Search found 55 matches

by Zoran
01.02.2016, 09:10
Forum: ZeosLib 7.2 Forum
Topic: 7.2 testers-thread
Replies: 514
Views: 123460

Re: 7.2-Beta testers-thread

Zeos trunk cannot compile since rev. 3786 (Merged revision(s) 3782-3785 from branches/testing-7.2) ZEncoding.pas has bugs. Lazarus 2.6, FPC 3.0, Linux Mint 64 bit There seems to be mess with conditional directives. Now I will checkout from branches/testing-7.2 and see which revision exactly is broke...
by Zoran
19.10.2015, 16:50
Forum: ZeosLib 7.2 Forum
Topic: Bug with locate
Replies: 1
Views: 529

Bug with locate

I reported a regression in 7.2, 7.3 and trunk versions here: https://sourceforge.net/p/zeoslib/tickets/132/ I uploaded a patch there. Please test and apply the patch. The problem is with Locate when the field is of type Integer - when the value parameter is a string wich begins with space, the appli...
by Zoran
12.11.2013, 09:03
Forum: ZeosLib 7.2 Forum
Topic: 7.2 testers-thread
Replies: 514
Views: 123460

Re: 7.2-alfa testers-thread

@Zoran again thank you. Did download a 64Bit FPC now and i think i did resolve the remaining issues. Now, compiles well on Windows 64-bit. I'll try in Linux this evening. @Zoran (Wondering why FPC assume a UInt64/QWord for the type LongWord) What do you mean? This: procedure TForm1.Button1Click(Sen...
by Zoran
11.11.2013, 15:47
Forum: ZeosLib 7.2 Forum
Topic: 7.2 testers-thread
Replies: 514
Views: 123460

Re: 7.2-alfa testers-thread

@Zoran thanks for your hints. Did add a define. Can you please test it? Now, zcore compilation breaks with ../zeos/testing-7.2/src/core/ZEncoding.pas(1265,1) Fatal: Syntax error, "identifier" expected but "BEGIN" found Ok, this one was easy, the "var" keyword from line...
by Zoran
10.11.2013, 10:47
Forum: ZeosLib 7.2 Forum
Topic: 7.2 testers-thread
Replies: 514
Views: 123460

Re: 7.2-alfa testers-thread

This is on Linux Mint 15, 64 bit, but later I'm going to try on Windows 7 too and I will post here. Same on Windows, but only with 64-bit compiling! C:\lazarus\Komponente\Zeos\testing-7.2\src\core\ZFastCode.pas(5804,64) Error: Incompatible types: got "strlen(PChar):Int64;" expected "...
by Zoran
10.11.2013, 06:19
Forum: ZeosLib 7.2 Forum
Topic: 7.2 testers-thread
Replies: 514
Views: 123460

Re: 7.2-alfa testers-thread

@Zoran lorbs, what's that? It compiles well on my FPC2.6.2 LCL see attachment. Which environmet do you use? Did you compile ZCore.lpk first? Actually, StrLen is defined in System , as well as in SysUtils . Still, package ZCore cannot compile, the compilation breaks on this line with message: .../ze...
by Zoran
09.11.2013, 08:07
Forum: ZeosLib 7.2 Forum
Topic: 7.2 testers-thread
Replies: 514
Views: 123460

Re: 7.2-alfa testers-thread

Zeos 7-2 testing and Zeos trunk branches do not compile with fpc 2.6.2. In unit ZFastCode there is this line:

Code: Select all

StrLen := {$IFDEF FPC}System.{$ELSE}SysUtils.{$ENDIF}StrLen;
But StrLen is not found in System.
by Zoran
20.09.2013, 14:51
Forum: ZeosLib 7.1 stable Forum
Topic: Zeos 7.0.x and 7.1.x
Replies: 4
Views: 1241

Re: Zeos 7.0.x and 7.1.x

@EgonHugeist, @mdaems, Most of the comments and reports concerns bugs version 7.0.3, version 7.0.4 and version 7.0.5 instead, version 7.0.1-rc in which these errors are not, or can be easily removed. Last week, 903 people have downloaded version 7.0.5-stable, and version 7.1.1-rc (which is in every...
by Zoran
17.01.2013, 08:35
Forum: ZeosLib 7.0 Stable Forum
Topic: [solved] Installing package issue(ZEOSDBO-7.0.3-stable)
Replies: 39
Views: 14692

Open all five Zeos packages from the same folder and compile them one by one, as explained here: http://zeos.firmos.at/viewtopic.php?p=16767#16767
by Zoran
09.01.2013, 21:02
Forum: ZeosLib 7.0 Beta Forum
Topic: [solved] Zeos 7.0.3-stable and Zeos 7.1-testing
Replies: 6
Views: 3580

@jma_sp: Probably you have mixed versions - make sure that all Zeos packages are installed from the same version - open and compile all five packages one by one from the same folder (from the folder where your Zeos 7.0.3 is) in this order: 1. zcore 2. zparsesql 3. zplain 4. zdbc 5. zcomponent Now tr...
by Zoran
23.12.2012, 19:20
Forum: ZeosLib 7.0 Beta Forum
Topic: [solved] empty string fields from sqlite being ret. as nulls
Replies: 4
Views: 4843

I would add here that in your code you can check if the field is null. Use something like this:

Code: Select all

if DbQuery.FieldByName('category').IsNull then
  C := '<null>'
else
  C := DbQuery.FieldByName('category').AsString;
by Zoran
22.12.2012, 15:56
Forum: ZeosLib 7.0 Beta Forum
Topic: [solved] empty string fields from sqlite being ret. as nulls
Replies: 4
Views: 4843

Re: empty string fields from sqlite being returned as nulls

@npage: Instead of: C := DbQuery['category']; N := DbQuery['name']; V := DbQuery['value']; You probably want to use C := DbQuery.FieldByName('category').AsString; N := DbQuery.FieldByName('name').AsString; V := DbQuery.FieldByName('value').AsString; Plus, I notice that in the code you posted the nam...
by Zoran
28.11.2012, 08:20
Forum: 6.6 - stable
Topic: Solution for ZEOS 6.6.6 with >= FPC2.5.x
Replies: 34
Views: 5852

Yes, Zoran right. I don't know how i can do diff between all source files of Zeos. Now i use FPC 2.4.3 + ZEOS 6.6.6 stable This svn command: svn diff http://svn.code.sf.net/p/zeoslib/code-0/tags/6.6.6-stable/ http://svn.code.sf.net/p/zeoslib/code-0/branches/6.6-patches/ > zeos.diff will give you th...
by Zoran
27.11.2012, 10:25
Forum: 6.6 - stable
Topic: Solution for ZEOS 6.6.6 with >= FPC2.5.x
Replies: 34
Views: 5852

Perhaps in point 1 ( zeos 6.6.6 which i download when it was released ) he means the he had used "stable", and in point 3 ( lastest zeos 6.6.6 from svn ) the "patches" branch? http://svn.code.sf.net/p/zeoslib/code-0/tags/6.6.6-stable/ http://svn.code.sf.net/p/zeoslib/code-0/branc...
by Zoran
27.11.2012, 06:41
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7.0.1 - Delphi XE3
Replies: 2
Views: 2146

Here is what Google translator says: I am not able to install 7.0.1 on Delphi XE3 Zeos not of any error but does not appear the Component Palette and when I click the installation package of the last ZcomponentDisigne he says it was installed but does not appear and the palette was not instalodo bec...