Search found 5 matches

by dseligo
01.11.2024, 08:33
Forum: SQLite
Topic: Next doesn't work in Android Arm v7a
Replies: 4
Views: 111

Re: Next doesn't work in Android Arm v7a

Great, thank you.

If I can test something just say.
by dseligo
29.10.2024, 19:40
Forum: SQLite
Topic: Next doesn't work in Android Arm v7a
Replies: 4
Views: 111

Re: Next doesn't work in Android Arm v7a

I tried with built-in FPC components (SQLDB) and it works with them.
by dseligo
27.10.2024, 21:42
Forum: SQLite
Topic: Next doesn't work in Android Arm v7a
Replies: 4
Views: 111

Next doesn't work in Android Arm v7a

I successfully use Zeos with LAMW (FPC 3.2.2) and Sqlite for Android Aarch64 target (using binaries for Android from sqlite.org). But when target is ARM v7a (armeabi), 'Next' and 'Prior' methods of TZQuery doesn't work. 'First' and 'Last' does work (correction: Last does something, but not exactly w...
by dseligo
14.04.2024, 18:09
Forum: ZeosLib 7.3/8.0 Forum
Topic: Query doesn't close when SQL.Text assigned
Replies: 4
Views: 415

Re: Query doesn't close when SQL.Text assigned

Hello dseligo, How can I turn on behavior like it was in previous Zeos versions? I think you can't. This was an intentional change by Egonhugeist. See the following code from ZSqlStrings.pas: procedure TZSQLStrings.SetTextStr(const Value: string); begin if Trim(Value) <> Trim(Text) then //prevent r...
by dseligo
13.04.2024, 16:13
Forum: ZeosLib 7.3/8.0 Forum
Topic: Query doesn't close when SQL.Text assigned
Replies: 4
Views: 415

Query doesn't close when SQL.Text assigned

I installed ZeosLib 8.0.0 on Lazarus 3.2, FPC 3.2.2. I found a major problem: active query doesn't close when SQL.Text property is assigned. I think it's related to this thread: https://zeoslib.sourceforge.io/viewtopic.php?t=143732 If I create table like this: With ZQuery1 do begin SQL.Text := 'crea...