[Firebird-devel] Enternal engine name

2016-06-23 Thread Jiří Činčura
Hi, When I have a, say, procedure like: create procedure foo ... engine bar; Is the "bar" always the filename (without extension)? Can it be somewhat "renamed" in plugins.conf? And how is the defaultName in registerPluginFactory method fits into that? Thanks. -- Mgr. Jiří Činčura Independent

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread liviuslivius
> So it seems being the tool problem. If it always passes SQL string > length to the old API (instead of passing zero), then the issue is > perfectly expected. I can confirm that FlameRobin works exactly this > way, so it cannot process SQL statements longer than 64KB. > > > Dmitry > > Hi

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread Adriano dos Santos Fernandes
On 23/06/2016 08:39, Dmitry Yemanov wrote: > 23.06.2016 13:59, liviuslivius wrote: >> i have attached file to http://tracker.firebirdsql.org/browse/CORE-1117 > I see that it fails way before the 64KB limit, with just the first union > part (simplified): > > The whole attached query works for me

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread liviuslivius
W dniu 2016-06-23 13:39:12 użytkownik Dmitry Yemanov napisał: > 23.06.2016 13:59, liviuslivius wrote: > > > > i have attached file to http://tracker.firebirdsql.org/browse/CORE-1117 > > I see that it fails way before the 64KB limit, with just the first union > part

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread Dmitry Yemanov
23.06.2016 13:59, liviuslivius wrote: > > i have attached file to http://tracker.firebirdsql.org/browse/CORE-1117 I see that it fails way before the 64KB limit, with just the first union part (simplified): SELECT * FROM UMOWA U INNER JOIN WARUNKI W ON W.UMOWA_ID = U.UMOWA_ID AND W.DYR_ID

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread liviuslivius
W dniu 2016-06-23 09:28:54 użytkownik Dmitry Yemanov napisał: > 23.06.2016 10:24, liviuslivius wrote: > > > > is this really working in all situations? Especially with union? > > I got error "Unexpected end of command - line 37, column 1779." > > Statement length is 76618

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread Dmitry Yemanov
23.06.2016 10:40, Mark Rotteveel wrote: > Are you using the old or new API. The limit still exists when the old > API is used. Not quite so. If you pass a zero-terminated string to the old API, it will be able to process long queries correctly. Provided that a v3.0 fbclient.dll is used.

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread Mark Rotteveel
Are you using the old or new API. The limit still exists when the old API is used. Mark - Bericht beantwoorden - Van: "liviuslivius" Aan: "firebird-devel@lists.sourceforge.net" Onderwerp: [Firebird-devel] CORE-1117 -

Re: [Firebird-devel] CORE-1117 - max sql command limit

2016-06-23 Thread Dmitry Yemanov
23.06.2016 10:24, liviuslivius wrote: > > is this really working in all situations? Especially with union? > I got error "Unexpected end of command - line 37, column 1779." > Statement length is 76618 chars. > If i remove ANY of the union part and length is back to <64K it work ok. > I use current