[Firebird-devel] Useful SQL Stored Procedures as part of standard firebird installation

2017-08-01 Thread Slavomir Skopalik
Hi, will be possible to extend firebird installation by SQL stored procedures that will solve common problems? It will be like UDF (let say in directory SQL), and every one can include/use this SQL like fbudf. Examples of useful: SP that returns complete metadata for another SP. SP that set

Re: [Firebird-devel] Useful SQL Stored Procedures as part of standard firebird installation

2017-08-01 Thread Paul Reeves
On Tue, 1 Aug 2017 11:49:42 +0200 Slavomir Skopalik wrote > Hi, > > will be possible to extend firebird installation by SQL stored > procedures that will solve common problems? > > It will be like UDF (let say in directory SQL), and every one can > include/use this SQL like fbudf. > It is a

[Firebird-devel] Firebird inside Firebird in FbNetExternalEngine

2017-08-01 Thread marius adrian popa
Loading Firebird Embedded inside *FbNetExternalEngine* https://www.tabsoverspaces.com/233628-firebird-inside-firebird-in-fbnetexternalengine/

[Firebird-devel] [FB-Tracker] Created: (CORE-5591) Engine hangs soon after some errors during transaction start

2017-08-01 Thread Alexander Peshkov (JIRA)
Engine hangs soon after some errors during transaction start Key: CORE-5591 URL: http://tracker.firebirdsql.org/browse/CORE-5591 Project: Firebird Core Issue Type: Bug Affects

[Firebird-devel] [FB-Tracker] Created: (CORE-5592) Problem with INSERT (...) RETURNING (...) and using dbExpress with Delphi

2017-08-01 Thread Luiz Fernando Trevisan (JIRA)
Problem with INSERT (...) RETURNING (...) and using dbExpress with Delphi - Key: CORE-5592 URL: http://tracker.firebirdsql.org/browse/CORE-5592 Project: Firebird Core Is

[Firebird-devel] Bytes per character for given charset

2017-08-01 Thread Jiří Činčura
Hi *, Can I *easily* get number of bytes per character for given character set ID in external engine? -- Mgr. Jiří Činčura https://www.tabsoverspaces.com/ -- Check out the vibrant tech community on one of the world's mos

Re: [Firebird-devel] Bytes per character for given charset

2017-08-01 Thread Adriano dos Santos Fernandes
On 01/08/2017 14:15, Jiří Činčura wrote: > Hi *, > > Can I *easily* get number of bytes per character for given character > set ID in external engine? > With API functions, no. Only running a query. Adriano -- Check o

Re: [Firebird-devel] Charset in IExternalProcedureImpl

2017-08-01 Thread Adriano dos Santos Fernandes
On 01/08/2017 02:52, Jiří Činčura wrote: >> This method changes the connection charset whiling the execute/open >> method is in progress. > What is this good for? > When an attachment runs external code, it may be in three different "states": - User (client) code (PSQL / SQL) - Plugin management

Re: [Firebird-devel] Charset in IExternalProcedureImpl

2017-08-01 Thread Jiří Činčura
> I mean ExternalEngine::getCharSet, the function to set connection > charset for plugin management code. I see getCharSet on IExternalProcedureImpl only. Nothing on IExternalEngineImpl. :\ Anyway. I have there strncpy(name, "UTF-8", nameSize);, nothing else... > If you set charset there, I supp