[Firebird-devel] Firebird 3, Engine12 exists, but can not be loaded

2011-05-23 Thread bertherngreen
Hello, I downloaded the Firebird-3.0.0.29349 snapshot of firebird, for a test. After unzipping the archive, I ran Firebird from the command prompt by: firebird.exe -a No errors were written to firebird.log at that moment, but as soon as I want to connect to a database using ISQL I have the fo

Re: [Firebird-devel] isc_dsql_exec_immed2 and memory corruption

2011-05-23 Thread Jason Wharton
As an additional note, I believe it could have something to do with the fact that the input parameters are nil and the output parameters are assigned. I'm going to try and see if passing in a dummy input parameter will help to provide a workaround. I say this because elsewhere I use this without

[Firebird-devel] Firebird 3, Engine12 exists, but can not be loaded

2011-05-23 Thread bertherngreen
Hello, I downloaded the Firebird-3.0.0.29349 snapshot of firebird, for a test. After unzipping the archive, I ran Firebird from the command prompt by: firebird.exe -a No errors were written to firebird.log at that moment, but as soon as I want to connect to a database using ISQL I have the fol

Re: [Firebird-devel] UTF8 Encoding and Decoding

2011-05-23 Thread Jason Wharton
Adriano, PS. Good questions Geoff! > > While on this sort of subject are you able to offer any > > information about what happens to API text such as SQL > > statements and the like) sent to the server? (And details > > like relation names etc returned to the client.) > > > They're interpreted i

[Firebird-devel] Jaybird 64 bit

2011-05-23 Thread Bösl , Sebastian
Hi, When will there be a 64bit version of the Jaybird driver? Mit freundlichen Grüßen/With best Regards Sebastian Bösl Client Computing Germany GmbH Reichenbachstr. 2 85737 Ismaning Tel: +49 89 453040-0 Mail: sbo...@clientcomputing.de Web: www.clientcomputing.co

Re: [Firebird-devel] [FB-Tracker] Created: (CORE-3460) IN with string, contained multiple values

2011-05-23 Thread Radomir Muras
Hi, you must to set this so: SELECT FROM TABLE 1 WHERE ID IN ('1', '2', '4', '6') or SELECT FROM TABLE 1 WHERE ID IN (1, 2, 4, 6) Ing. R. Muras. 2011/5/3 Maxim Kuzmin (JIRA) > IN with string, contained multiple values > - > > Key: CORE

Re: [Firebird-devel] isc_dsql_exec_immed2 and memory corruption

2011-05-23 Thread Dimitry Sibiryakov
28.04.2011 6:43, Jason Wharton wrote: > I say this because elsewhere I use this without any problems and I am > passing in both input and output structures. You must be very lucky if you never encountered CORE-3202. -- SY, SD. --

[Firebird-devel] [FB-Tracker] Created: (CORE-3489) Blob transliteration may not happen inside the union

2011-05-23 Thread Dmitry Yemanov (JIRA)
Blob transliteration may not happen inside the union Key: CORE-3489 URL: http://tracker.firebirdsql.org/browse/CORE-3489 Project: Firebird Core Issue Type: Bug Components: Engine

Re: [Firebird-devel] Problems in upgradeInterface

2011-05-23 Thread Adriano dos Santos Fernandes
On 23/05/2011 03:39, Alex Peshkoff wrote: > On 05/22/11 19:02, Adriano dos Santos Fernandes wrote: >> Hi! >> >> This method caches created vtable in a map using original vtable address >> as the key. >> >> When libraries are unloaded, two problems happen: >> >> 1) Memory leaks. >> 2) This is even

Re: [Firebird-devel] Jaybird 64 bit

2011-05-23 Thread Mark Rotteveel
> Hi, > > When will there be a 64bit version of the Jaybird driver? Which part of the Jaybird driver? The pure-Java part of Jaybird is platform-independent and will work on both 32 bit and 64 bit. So you can connect to a Firebird-server using the TCP/IP protocol. The embedded part requires a D

[Firebird-devel] [FB-Tracker] Created: (CORE-3490) Concurrency problem when using named cursors

2011-05-23 Thread Roger Vellacott (JIRA)
Concurrency problem when using named cursors Key: CORE-3490 URL: http://tracker.firebirdsql.org/browse/CORE-3490 Project: Firebird Core Issue Type: Bug Affects Versions: 2.5.0 Environ

Re: [Firebird-devel] Problems in upgradeInterface

2011-05-23 Thread Alex Peshkoff
On 05/23/11 14:36, Adriano dos Santos Fernandes wrote: > On 23/05/2011 03:39, Alex Peshkoff wrote: >> On 05/22/11 19:02, Adriano dos Santos Fernandes wrote: >>> Hi! >>> >>> This method caches created vtable in a map using original vtable address >>> as the key. >>> >>> When libraries are unloade

Re: [Firebird-devel] Problems in upgradeInterface

2011-05-23 Thread Adriano dos Santos Fernandes
On 23/05/2011 08:47, Alex Peshkoff wrote: > On 05/23/11 14:36, Adriano dos Santos Fernandes wrote: >> On 23/05/2011 03:39, Alex Peshkoff wrote: >>>On 05/22/11 19:02, Adriano dos Santos Fernandes wrote: Hi! This method caches created vtable in a map using original vtable address

[Firebird-devel] Framework for API classes

2011-05-23 Thread Adriano dos Santos Fernandes
All, I'll first start with no code and examples, but I wrote a small framework to better write our API classes. First lets say the problems we're having. Usage of the API classes, while is still low, are already becoming messy, specially related to the status vector. There are status vector i

Re: [Firebird-devel] Framework for API classes

2011-05-23 Thread Alex Peshkoff
On 05/23/11 16:16, Adriano dos Santos Fernandes wrote: > All, > > I'll first start with no code and examples, but I wrote a small > framework to better write our API classes. > > First lets say the problems we're having. Usage of the API classes, > while is still low, are already becoming messy,

Re: [Firebird-devel] Problems in upgradeInterface

2011-05-23 Thread Alex Peshkoff
On 05/23/11 16:02, Adriano dos Santos Fernandes wrote: > On 23/05/2011 08:47, Alex Peshkoff wrote: >> On 05/23/11 14:36, Adriano dos Santos Fernandes wrote: >>> On 23/05/2011 03:39, Alex Peshkoff wrote: On 05/22/11 19:02, Adriano dos Santos Fernandes wrote: > Hi! > > This met

Re: [Firebird-devel] Problems in upgradeInterface

2011-05-23 Thread Adriano dos Santos Fernandes
On 23/05/2011 09:21, Alex Peshkoff wrote: > Yes of cause. > I agree with all this words - but mentioned cache will anyway remain > always empty in fbclient of FB3. > And I do not say it must not be done - I say only that this is not top > priority job. > Ok, but there is a design question. How the

[Firebird-devel] [FB-Tracker] Created: (CORE-3491) Altering of a TYPE OF COLUMN parameter affects the original column

2011-05-23 Thread Dmitry Yemanov (JIRA)
Altering of a TYPE OF COLUMN parameter affects the original column -- Key: CORE-3491 URL: http://tracker.firebirdsql.org/browse/CORE-3491 Project: Firebird Core Issue Type: Bug