Search found 7 matches

by amonteiro
25.03.2024, 15:00
Forum: ZeosLib 7.3/8.0 Forum
Topic: SQL Error: request synchronization error
Replies: 1
Views: 386

SQL Error: request synchronization error

Hi, I am trying to execute in a clientdataset the follow command text: SELECT VENDABUSCADESC FROM GETPERMISSAO(27400001) But i receive ths error: Remote error: SQL Error: request synchronization error; GDS Code: 335544364; Unsuccessful execution caused by system error that does not preclude successf...
by amonteiro
18.01.2024, 16:00
Forum: ZeosLib 7.3/8.0 Forum
Topic: LargeInt like FMTBcdField Size 0
Replies: 3
Views: 502

Re: LargeInt like FMTBcdField Size 0

Hi, I changed to LargeInt the INT64 field and it works. With BCD field i have this situation now: object cdsClienteLIMITE: TBCDField FieldName = 'LIMITE' Origin = 'GETCLIENTE.LIMITE' Precision = 32 Size = 2 end The field above is giving the error "expecting BCD actual: FMTBCDField". I chan...
by amonteiro
28.12.2023, 21:05
Forum: ZeosLib 7.3/8.0 Forum
Topic: LargeInt like FMTBcdField Size 0
Replies: 3
Views: 502

LargeInt like FMTBcdField Size 0

Hi, We use FIBPlus in our application and we are changing to ZEOS framework. In the FIB exists a property in the dataset (PrepareOptions) called psSQLINT64toBCD, when i check this the BIGINT in the Firebird is treated like type BCD size 0. Is there something like this in the ZEOS? In the moment i am...
by amonteiro
25.08.2022, 19:30
Forum: ZeosLib 7.3/8.0 Forum
Topic: Error 'Row buffer is not assigned'
Replies: 1
Views: 98

Error 'Row buffer is not assigned'

Hi, I'am using Firebird 4.0 and Zeos 8.0 with Delphi XE2. In the form i have a TClientDataset, TDataSetProvider, TZQuery, 2 TZTransaction(Read and Write). Then when i give a Active := True in the clientdataset and that don't have return(RecordCount = 0), my database is empty, i receive the error: Ro...
by amonteiro
25.08.2022, 18:42
Forum: ZeosLib 7.3/8.0 Forum
Topic: Clientdataset + ZConnection
Replies: 2
Views: 199

Re: Clientdataset + ZConnection

Hi, i resolve removing this property in the options of my TDataSetProvider: poIncFieldProps
by amonteiro
02.08.2022, 21:30
Forum: ZeosLib 7.3/8.0 Forum
Topic: Clientdataset + ZConnection
Replies: 2
Views: 199

Clientdataset + ZConnection

Hi, I have a ZConnection and a clientdataset that return to me a DATE field in the Firebird 4.0. But when i give a Active true in the component, return to me: [02/08/2022 16:54:13] [UDMSERVER]FALHA ao conectar no BANCO DE DADOS: 192.168.0.14/4010:D:\BD\FRENTE_4.FDB Error reading cdsGetProcedimentoDA...
by amonteiro
20.07.2022, 15:16
Forum: ZeosLib 7.3/8.0 Forum
Topic: TZSQLProcessor + Return Field
Replies: 1
Views: 97

TZSQLProcessor + Return Field

Hi, i have a sql script in the Firebird 4 that is like it: EXECUTE BLOCK RETURNS (EXISTE INTEGER) AS BEGIN EXISTE = 0; IF (EXISTS(SELECT 1 FROM RDB$PROCEDURES WHERE RDB$PROCEDURE_NAME = 'VEC_OBTERVERSAOEC')) THEN EXISTE = 1; SUSPEND; END I would like to run this sql and get the Field EXISTE in the r...