Search found 10 matches

by majlumbo
09.05.2014, 18:44
Forum: ZeosLib 7.1 stable Forum
Topic: EOF dont get TRUE
Replies: 6
Views: 1183

Re: EOF dont get TRUE

Sorry, I did miss the EnableControls... Do you have anything attached to this query's Before/AfterEdit, or Before/AfterPost? That may be interrupting the process flow of the loop. If So, you may want to disable them and re-enable at the end. ZQuery.AfterPost := nil; try ... finally ZQuery.AfterPost ...
by majlumbo
08.05.2014, 17:02
Forum: ZeosLib 7.1 stable Forum
Topic: EOF dont get TRUE
Replies: 6
Views: 1183

Re: EOF dont get TRUE

You call DisableControls, but I don't see you calling EnableControls. You also call Application.ProcessMessages in your loop. I understand why you are doing so, but that may cause side-effects. You may want to disable the control used to enter this procedure (such as BitBtn?) as you enter, and re-en...
by majlumbo
02.05.2014, 21:02
Forum: ZeosLib 7.1 stable Forum
Topic: Saving/Retrieving Text from MySQL TEXT field
Replies: 0
Views: 1128

Saving/Retrieving Text from MySQL TEXT field

I have a MySQL database using UCS2_UNICODE_CI collation. I connect to it via Zeos 7.1.3a, within Delphi XE2 (x32) Zeos is configured: ClientCodePage := 'UTF8'; ControlsCodePage := cCP_UTF16; AutoEncodingStrings := True; etc... I have no issues when I post/retrieve Text data from a blob field, I can ...
by majlumbo
08.04.2014, 18:18
Forum: ZeosLib 7.1 stable Forum
Topic: SQLite 3 - "SQL logic error or missing database"
Replies: 6
Views: 5917

Re: SQLite 3 - "SQL logic error or missing database"

Had not seen that before, but none-the-less, if you follow the link you get this SQLITE_ENABLE_UPDATE_DELETE_LIMIT This option enables an optional ORDER BY and LIMIT clause on UPDATE and DELETE statements. If this option is defined, then it must also be defined when using the 'lemon' tool to generat...
by majlumbo
08.04.2014, 17:15
Forum: ZeosLib 7.1 stable Forum
Topic: SQLite 3 - "SQL logic error or missing database"
Replies: 6
Views: 5917

Re: SQLite 3 - "SQL logic error or missing database"

why is tablename not allowed to set by a parameter? I'm sure there's a reason, but I don't know of any connection component that allows table name value to be a supplied by a parameter. Why does "LIMIT 1" at the end of the upper statement (with corrected table name part) cause the same er...
by majlumbo
08.04.2014, 14:28
Forum: ZeosLib 7.1 stable Forum
Topic: SQLite 3 - "SQL logic error or missing database"
Replies: 6
Views: 5917

Re: SQLite 3 - "SQL logic error or missing database"

I think the issue is that you are using a parameter for the table name value. I believe that is not allowed.
by majlumbo
02.04.2014, 15:14
Forum: ZeosLib 7.1 stable Forum
Topic: 0 record(s) updated. Only one record should have been update
Replies: 3
Views: 785

Re: 0 record(s) updated. Only one record should have been up

Thanks for the quick turn around. Solved the problem.
by majlumbo
01.04.2014, 22:36
Forum: ZeosLib 7.1 stable Forum
Topic: 0 record(s) updated. Only one record should have been update
Replies: 3
Views: 785

0 record(s) updated. Only one record should have been update

Much like as explained at the post here: http://zeoslib.sourceforge.net/viewtopic.php?f=38&t=8386 I am also this same error. I am using ZEOS 7.1.3 Stable. I get this error on a ZQuery.Post using MySQL. I see that the patch provided in the other link is for Interbase, so while I applied the patch...
by majlumbo
18.01.2011, 04:45
Forum: 6.6 - stable
Topic: Different Declarations
Replies: 1
Views: 374

I ended up deleting the ZQuery and Datasource components, added them again, with the same query, and the after adding the fields in the fields editor, I checked the definition of num_days. This time it correctly declared num_days as TLargeintField. Everything seems to be working.
by majlumbo
12.01.2011, 18:16
Forum: 6.6 - stable
Topic: Different Declarations
Replies: 1
Views: 374

Different Declarations

I'm using ZEOS 6.6, Delphi 2006 and MySQL 5.1. I have two different queries with similar selects, that is producing two different declaration types in Delphi The 1st query select ... datediff(curdate(), date_received) as "DaysInLab" from ... The 2nd query select ... datediff(date_closed, d...