Search found 4 matches

by danielsap
02.10.2024, 11:22
Forum: ZeosLib 7.3/8.0 Forum
Topic: Error: linker: error: non-private labels cannot appear between .cfi_startproc / .cfi_endproc pairs
Replies: 1
Views: 64

Error: linker: error: non-private labels cannot appear between .cfi_startproc / .cfi_endproc pairs

Hi I tried to compile Zeoslib 8.0 packages in Lazarus 3.7 on MacOS Sequoia 15.0 It started well with successful compiling of zcore, zparsesql, zplain Unfortunately when compiling zdbc I receive multiple errors Do you have some ideas what is the issue and how to handle it. Regards 11491(114911,0) Err...
by danielsap
28.05.2017, 08:05
Forum: ZeosLib 7.2 Forum
Topic: Insert with returning and zquery open
Replies: 1
Views: 490

Insert with returning and zquery open

Hi, I'm trying to insert a new record in table and get the generated by sequence value of Id column. So, I found that the right approach is to use insert with returning. I did it but after executing 2 things happen 1 - I receive the newly generated id 2 - There is no new record in the table. It look...
by danielsap
13.04.2017, 05:38
Forum: ZeosLib 7.2 Forum
Topic: TZTable tries to set Identity column on insert
Replies: 2
Views: 1233

Re: TZTable tries to set Identity column on insert

Thank you, Jan
It works fine this way (y)
by danielsap
12.04.2017, 06:50
Forum: ZeosLib 7.2 Forum
Topic: TZTable tries to set Identity column on insert
Replies: 2
Views: 1233

TZTable tries to set Identity column on insert

Hi, I created simple application in Delphi - TZConnection, TZTable, TDataSource, TDBGrid. Also created a table in FireBird with identity column create table Perspective ( Id integer generated by default as identity primary key, Name varchar(64) ); When I run the application and type value for Name i...