Re: [Firebird-devel] Adding firebird.pas to windows build

2016-02-24 Thread Norbert Saint Georges
ok, sorry I did not understand. I found the source of a new VM and it compiles under lazarus 3.0 good :-) Carlos H. Cantu a écrit : > Currently Firebird.pas can be found only in the linux builds. > That's what Alex is talking about. It should be on Windows builds too. -- Norbert Saint G

Re: [Firebird-devel] Adding firebird.pas to windows build

2016-02-23 Thread Norbert Saint Georges
) and placed into binary package. > > Alex, Hi, Program create; uses Sysutils, Firebird; <-- Firebird unit ??? Where can you find it? var ..... -- Norbert Saint Georges http://tetrasys.fi -- Site24x7 APM Insight

[Firebird-devel] UDR IExternalFunction

2016-11-16 Thread Norbert Saint Georges
Hello, In the procedure execute(status: IStatus; context: IExternalContext; inMsg: Pointer; outMsg: Pointer); virtual; abstract; inMsg and outMsg Pointer to what? And how to recover it? -- Norbert Saint Georges http://tetrasys.fi

[Firebird-devel] Function UDR in Pascal

2016-11-16 Thread Norbert Saint Georges
EXTERNAL NAME 'int16!int16_bin' ENGINE UDR; Or can I find a pascal example of a UDR function that is fine? thank you in advance. -- Norbert Saint Georges http://tetrasys.fi -- Firebird-Devel mailing

Re: [Firebird-devel] Function UDR in Pascal

2016-11-16 Thread Norbert Saint Georges
on the implementation of a UDR Function? -- Norbert Saint Georges http://tetrasys.fi -- Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] Function UDR in Pascal

2016-11-16 Thread Norbert Saint Georges
lugin.registerFunction(status,' int16_bin ',int16Factory.create());   On the basis of the example procedure but fails to register it. I still have the message "UDR plugin entry point not found." -- Norbert

Re: [Firebird-devel] Function UDR in Pascal

2016-11-16 Thread Norbert Saint Georges
Adriano dos Santos Fernandes a écrit : > And you do it with these spaces (' int16_bin ') and expect it to work? > > > Adriano No, there is no space, it must be a copy / paste effect in the mail :-) -- Norbert Saint Georges http:/

Re: [Firebird-devel] Function UDR in Pascal

2016-11-16 Thread Norbert Saint Georges
dll. When you know, the UDR functions work well :-) Thank you, -- Norbert Saint Georges http://tetrasys.fi -- Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] new API IMetadataBuilder Bigint[1:100]

2016-11-13 Thread Norbert Saint Georges
Hello all, in new API, How to declare an array of bigint? builder := master.getMetadataBuilder(st,1); builder.setType(st,0,SQL_ARRAY +1); ?? builder.setSubType(st,0, 16); ?? builder.setLength(st,0,100); -- Norbert Saint Georges http://tetrasys.fi

[Firebird-devel] [FB-Tracker] Created: (CORE-5403) External Engines, UDR Function, IN Param

2016-11-20 Thread Norbert Saint Georges (JIRA)
Affects Versions: 3.0.1, 3.0.0, 4.0 Initial Reporter: Norbert Saint Georges CREATE OR ALTER FUNCTION INT16_BIN( FINT16 SMALLINT) RETURNS CHAR(2) CHARACTER SET OCTETS EXTERNAL NAME 't4s_to_bin!int16_bin' ENGINE UDR; int16Procedure = class(IExternalFunctionImpl) ... procedure

[Firebird-devel] IN UDR Function

2016-11-19 Thread Norbert Saint Georges
Hello all, When the input parameter of a UDR function is zero, the outmsg pointer is null, why? -- Norbert Saint Georges http://tetrasys.fi -- Firebird-Devel mailing list, web interface at https

[Firebird-devel] Internal error when using API clap: read past EOF

2019-10-01 Thread Norbert Saint Georges
)); I can not find any documentation on the subject via goo, would you have a link of a functional example? Thank you in advance, Norbert -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] Internal error when using API clap: read past EOF

2019-10-01 Thread Norbert Saint Georges
Vlad Khorsun a écrit : 01.10.2019 20:12, Norbert Saint Georges wrote: Hello, I try different solutions to use the new API in Pascal. I get good "service_mgr" I pass spb.insertTag (st, isc_action_svc_trace_start); I get the error "'Internal error when using API clap

[Firebird-devel] loadBlob & dumpBlob in Pascal file

2019-12-12 Thread Norbert Saint Georges
Hello everyone, for the procedures IUtil_loadBlobPtr & iUtil_dumpBlobPtr what type of field is provided? BFile ?? thank you in advance. -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] FB4 for win xp ->2008r1

2019-12-06 Thread Norbert Saint Georges
Hello, Fbclient.dll no longer supports windows version 5.2-> 6.0? Entry procedure entry point « ucrtbase.abort » could not be located in the dynamic link library api-ms-win-crt-runtime-|1-1-0.dll -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interf

Re: [Firebird-devel] FB4 for win xp ->2008r1

2019-12-07 Thread Norbert Saint Georges
, win2008r1, .. are out ;-) FYI, FB 3.x works great on these platforms. Regards, -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] how to declare a decfloat (16) with a scale of zero for a column GENERATED BY DEFAULT AS IDENTITY

2019-12-16 Thread Norbert Saint Georges
in client-java: Identity column {0} of table {1} must be of exact number type with zero scale -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] how to declare a decfloat (16) with a scale of zero for a column GENERATED BY DEFAULT AS IDENTITY

2019-12-16 Thread Norbert Saint Georges
type number from oracle and the above value is an example. What do you advise me? -Message d'origine- De : Mark Rotteveel [mailto:m...@lawinegevaar.nl] Envoyé : lundi 16 décembre 2019 13:32 À : Norbert Saint Georges; For discussion among Firebird Developers Objet : Re: [Firebird-devel

Re: [Firebird-devel] how to declare a decfloat (16) with a scale of zero for a column GENERATED BY DEFAULT AS IDENTITY

2019-12-16 Thread Norbert Saint Georges
Mark Rotteveel a écrit : On 2019-12-16 15:42, Norbert Saint Georges wrote: Mark Rotteveel a écrit : I can't answer that without information what the problem is. Mark okay :-) I was actually referring to what you meant with: """ t = kb t1 = ok """ Especi

Re: [Firebird-devel] how to declare a decfloat (16) with a scale of zero for a column GENERATED BY DEFAULT AS IDENTITY

2019-12-16 Thread Norbert Saint Georges
you in advance. -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] how to declare a decfloat (16) with a scale of zero for a column GENERATED BY DEFAULT AS IDENTITY

2019-12-16 Thread Norbert Saint Georges
Dimitry Sibiryakov a écrit : 16.12.2019 15:42, Norbert Saint Georges wrote: I am developing an application to import Oracle DBs to Firebird 4. Do you mean "automatic import"? yes, for people like me, who don't like tinkering with something other than Firebird :-) part_id i

Re: [Firebird-devel] how to declare a decfloat (16) with a scale of zero for a column GENERATED BY DEFAULT AS IDENTITY

2019-12-16 Thread Norbert Saint Georges
oulala, I did not check this it's my bullshit day. Many thanks for your time -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] Employee DB for FB4

2019-11-26 Thread Norbert Saint Georges
Hello everyone, Is there a DB FB4 that includes all the features built into FB4, like "employee" up to date? Thank you in advance -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] clop and firebird.pas

2019-11-29 Thread Norbert Saint Georges
Alex Peshkoff via Firebird-devel a écrit : I'm afraid I have to ask you to checkout once again from github and send me log once again - firebird.pas was missing in 'clean' target. it's ok now on centos8 https://tetrasys.fi/data/FB4makeOnCentos8_2.7z a big thank-you -- Norbert Saint Georges

[Firebird-devel] clop and firebird.pas

2019-11-29 Thread Norbert Saint Georges
Hello everyone, When compiling sources via the git repository, clop does not create the firebird.pas file on either cent 8 or windows 7 32/64; Why ? :-) -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo

Re: [Firebird-devel] clop and firebird.pas

2019-11-29 Thread Norbert Saint Georges
Alex Peshkoff via Firebird-devel a écrit : On 2019-11-29 12:57, Norbert Saint Georges wrote: Hello everyone, When compiling sources via the git repository, clop does not create the firebird.pas file on either cent 8 or windows 7 32/64; Why ? :-) Can you send here full build log (i.e. make

[Firebird-devel] example 07.blob.cpp

2019-10-08 Thread Norbert Saint Georges
Good morning all, in the example 07.blob.cpp we find the code "// Message for data exchange FB_MESSAGE (Msg, ThrowStatusWrapper, (FB_BLOB, b) ) message (& status, master); " Firebird.pas does not take the definition of FB_Message nor FB_BLOB. In Pascal, how do you do? --

[Firebird-devel] IBlob->getInfo in Firebird.pas

2019-10-09 Thread Norbert Saint Georges
Good morning all, IBlob.getInfo always returns [2,0,0, .] regardless of the requested tags. What is the procedure for knowing the size and number of segments of SQL_Blob with an IBlob? thank you in advance, -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web

[Firebird-devel] File Firebird.pas

2019-10-12 Thread Norbert Saint Georges
Good evening, I find the Firebird.pas file in the B3_0_Release but not in the master, normal? :-) -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] File Firebird.pas

2019-10-14 Thread Norbert Saint Georges
Alex Peshkoff via Firebird-devel a écrit : On 10/12/19 5:57 PM, Norbert Saint Georges wrote: Good evening, I find the Firebird.pas file in the B3_0_Release but not in the master, normal? :-) Depends upon _where_ you do not find it. File is generated during the build, i.e. it's missing

Re: [Firebird-devel] File Firebird.pas

2019-10-14 Thread Norbert Saint Georges
Alex Peshkoff via Firebird-devel a écrit : On 10/12/19 5:57 PM, Norbert Saint Georges wrote: Good evening, I find the Firebird.pas file in the B3_0_Release but not in the master, normal? :-) Depends upon _where_ you do not find it. File is generated during the build, i.e. it's missing

Re: [Firebird-devel] File Firebird.pas

2019-10-14 Thread Norbert Saint Georges
Alex Peshkoff via Firebird-devel a écrit : On 10/14/19 1:59 PM, Norbert Saint Georges wrote: Alex Peshkoff via Firebird-devel a écrit : On 10/12/19 5:57 PM, Norbert Saint Georges wrote: Good evening, I find the Firebird.pas file in the B3_0_Release but not in the master, normal

[Firebird-devel] [FB-Tracker] Created: (CORE-6157) Firebird.pas

2019-10-14 Thread Norbert Saint Georges (JIRA)
: Windows package Reporter: Norbert Saint Georges the Firebird.pas file is distributed only in the linux version but in no other version. in version 4.0.0.1629, there are the following errors: In Pascal, "record" is a reserved word. after renaming: "record" to &

Re: [Firebird-devel] SQL_INT128

2019-12-21 Thread Norbert Saint Georges
Dimitry Sibiryakov a écrit : 20.12.2019 21:19, Norbert Saint Georges wrote: I try all the possibilities in numeric (38), decimal (38) it returns me, via pascal API, always a 32762 and not a 32752 You must use the latest snapshots, not old beta release. Thank you for your answers. after

Re: [Firebird-devel] loadBlob & dumpBlob in Pascal file

2019-12-23 Thread Norbert Saint Georges
Alex Peshkoff via Firebird-devel a écrit : > On 2019-12-12 11:29, Norbert Saint Georges wrote: >> Hello everyone, >> >> for the procedures IUtil_loadBlobPtr & iUtil_dumpBlobPtr  what type of >> field is provided? BFile ?? >> > > May be I do not understa

Re: [Firebird-devel] SQL_INT128

2019-12-20 Thread Norbert Saint Georges
Dimitry Sibiryakov a écrit : 20.12.2019 21:08, Norbert Saint Georges wrote: it is declared SQL_INT128 with 32752 but cannot find a way to declare it in an FB4 table. An idea or a link? doc/sql.extensions/README.data_types.txt thank you for your reply. but I try all the possibilities

[Firebird-devel] SQL_INT128

2019-12-20 Thread Norbert Saint Georges
Good evening, it is declared SQL_INT128 with 32752 but cannot find a way to declare it in an FB4 table. An idea or a link? thank you in advance -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird

Re: [Firebird-devel] loadBlob & dumpBlob in Pascal file

2019-12-23 Thread Norbert Saint Georges
Adriano dos Santos Fernandes a écrit : On 23/12/2019 09:08, Norbert Saint Georges wrote: Apologies, I badly speak in English. In Firebird.pas, there are two procedures: 1) IUtil_loadBlobPtr = procedure (this: IUtil; status: IStatus; blobId: ISC_QUADPtr; att: IAttachment; tra: ITransaction

Re: [Firebird-devel] loadBlob & dumpBlob in Pascal file

2019-12-23 Thread Norbert Saint Georges
hing like SQL_BFile is present. excellent, I'll take a look. A big thank-you -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] timestamp field

2020-01-10 Thread Norbert Saint Georges
Hello In FB4, when adding a timestamp field it creates me timestamp_tz (32752). normal? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] The code attempted to access a virtual address without privilege to do so. FB4

2020-04-20 Thread Norbert Saint Georges
message? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] how to use "set bind" in F4

2020-03-24 Thread Norbert Saint Georges
Steve Bailey a écrit : So, where do I get 1815 from? http://web.firebirdsql.org/download/snapshot_builds/win/4.0/ to day, 1817 :-) -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] how to use "set bind" in F4

2020-03-25 Thread Norbert Saint Georges
have the latest version of firebird.pas -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] New API and scrollable cursors

2020-04-27 Thread Norbert Saint Georges
Dmitry Sibiryakov a écrit : 27.04.2020 15:23, Pavel Cisar wrote: Or is the impression that this feature is not actually implemented really true? Yes it is true though should work in embedded mode. is it functional in embedded? are you sure ? -- Norbert Saint Georges http://tetrasys.fi

Re: [Firebird-devel] New API and scrollable cursors

2020-04-27 Thread Norbert Saint Georges
ance ones, and are worth to be provided anytime sooner than in v5.0. regards Pavel Cisar Personally, I use the new pascal API every day and have been waiting for this implementation for a long time because it is essential for all lib devs without that they do not even start. -- Norbert S

Re: [Firebird-devel] IUtile API Version numbering

2020-03-19 Thread Norbert Saint Georges
ext_offset: ISC_SHORT; -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] IUtile API Version numbering

2020-03-19 Thread Norbert Saint Georges
Tony Whyman a écrit : See http://tracker.firebirdsql.org/browse/CORE-6207 this is the difference between the compilation of the day before yesterday and that of the git less than an hour ago -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https

Re: [Firebird-devel] IUtile API Version numbering

2020-03-19 Thread Norbert Saint Georges
String(IStatus;FB_I128Ptr;LongInt;LongWord;PChar);" 15424 lines compiled, 1.0 sec 3 warning(s) issued -- -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] how to use "set bind" in F4

2020-03-24 Thread Norbert Saint Georges
; end; Afterwards, all the tz dates will be returned compatible firedac in the "fdconnection1" session and this method can be used to format the new format of FB4 (except varbinary it seems to me) -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface

Re: [Firebird-devel] how to use "set bind" in F4

2020-03-24 Thread Norbert Saint Georges
Steve Bailey a écrit : ( I am using WI-T4.0.0.1436 Firebird 4.0 Beta 1 on Windows 10.) you need to update the version of Firebird 4 currently 1815. In your version, 1436, this was not yet implemented. -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface

Re: [Firebird-devel] OO API examples for Object Pascal

2020-08-18 Thread Norbert Saint Georges
-- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] have the dpb settings changed?

2020-12-18 Thread Norbert Saint Georges
Norbert Saint Georges a écrit : That said, as far as I'm aware nothing changed in how this worked, but I do want to point out that there seems to be a mismatch in versions. You say you're using 4.0.0.2298, but that version tag indicates you're using 4.0.0.2265. exact, I will update

Re: [Firebird-devel] have the dpb settings changed?

2020-12-18 Thread Norbert Saint Georges
just made a dumpling and it works! I recompiled the source in 32bits forgetting the lib 64 and it still works :-( ??? I will take the tests like this to see if it holds. -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/list

Re: [Firebird-devel] have the dpb settings changed?

2020-12-18 Thread Norbert Saint Georges
Mark Rotteveel a écrit : On 18-12-2020 15:58, Norbert Saint Georges wrote: Mark Rotteveel a écrit : On 18-12-2020 15:14, Norbert Saint Georges wrote: Server version LI-V6.3.0.2265 Firebird 4.0 Release Candidate 1 on centos 8. What tool are you using that it still uses the old 'InterBase

Re: [Firebird-devel] have the dpb settings changed?

2020-12-18 Thread Norbert Saint Georges
Mark Rotteveel a écrit : On 18-12-2020 15:14, Norbert Saint Georges wrote: Server version LI-V6.3.0.2265 Firebird 4.0 Release Candidate 1 on centos 8. What tool are you using that it still uses the old 'InterBase backwards compatible' version tag instead of the new version tag that (which

[Firebird-devel] have the dpb settings changed?

2020-12-18 Thread Norbert Saint Georges
me without any changes. an idea? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] blr 31 & 30

2021-02-04 Thread Norbert Saint Georges
-- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] blr 31 & 30

2021-02-04 Thread Norbert Saint Georges
overload of timestamp_tz and time_tz? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] blr 31 & 30

2021-02-04 Thread Norbert Saint Georges
in rdb $ types in FB4, what is it for? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] blr 31 & 30

2021-02-04 Thread Norbert Saint Georges
Mark Rotteveel a écrit : On 2021-02-04 09:39, Norbert Saint Georges wrote: yes, this is what I found but there is no definition RDB $ FIELD_TYPE = 30 or 31 in rdb $ types in FB4, what is it for? The EXTENDED TIMESTAMP WITH TIME ZONE and EXTENDED TIME WITH TIME ZONE are protocol-only data

[Firebird-devel] fb 5.0.0.40 ?

2021-05-18 Thread Norbert Saint Georges
Hello, I just compiled Firebird via git and he pulls me out the version Firebird 5.0.0.40-Initial.amd64 . Normal? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] varbinary

2021-12-20 Thread Norbert Saint Georges
Hello, a varbinary has a subtype of 1 and not 0 (binary) normal? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] varbinary

2021-12-20 Thread Norbert Saint Georges
months :-) but ok :-) -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] varbinary

2021-12-20 Thread Norbert Saint Georges
STAMP, PAYCHAR(1), DELETED CHAR(1) DEFAULT 'F', PASSWD VARCHAR(20) ); -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

Re: [Firebird-devel] Profiler plugin is not found. Windows snapshot Firebird-5.0.0.684-0-x64

2022-08-23 Thread Norbert Saint Georges
ESSION = Statement failed, SQLSTATE = HY000 Profiler plugin is not found -At function 'RDB$PROFILER.START_SESSION' SQL> Server Version: LI-T5.0.0.681 Firebird 5.0 Initial this ok :-) -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface

Re: [Firebird-devel] Building Firebird Linux with --with-builtin-tommath

2022-09-03 Thread Norbert Saint Georges
libtommath-devel glibc-static libstdc++-static libtool-ltdl-devel zlib zlib-devel -y cd firebird bla bla -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] decodeTimeTz or decodeTimeTzEx API?

2022-09-22 Thread Norbert Saint Georges
Hi, which version should be used and in which case should one or the other be used? thank you in advance, Norbert -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel

[Firebird-devel] nullOffset on vacation ?

2022-09-25 Thread Norbert Saint Georges
Hi, FB4 iso8859_1 With a varchar(32765) field, the API returns a nullOffset outside the buffer length and the next field gives me an offset identical to the nullOffset of the previous field. Did I miss something? -- Norbert Saint Georges http://tetrasys.fi Firebird-Devel mailing list

Re: [Firebird-devel] decodeTimeTz or decodeTimeTzEx API?

2022-09-23 Thread Norbert Saint Georges
Dimitry Sibiryakov a écrit : Norbert Saint Georges wrote 23.09.2022 7:26: which version should be used and in which case should one or the other be used? decodeTimeTz is used for ISC_TIME_TZ type and decodeTimeTzEx is used for ISC_TIME_TZ_EX type (SQL_TIME_TZ and SQL_TIME_TZ_EX values