Hello
Since Aducom's static version is no longer maintained, I'm looking for an alternative that lets me compile SQLite into a Delphi application statically so I can just distribute a single EXE, with no dependency.
Does ZeosLib require sqlite3.dll?
Thank you.
Search found 15 matches
- 13.08.2009, 10:24
- Forum: 6.6 - stable
- Topic: [SQLite] Does ZeosLib require sqlite3.dll?
- Replies: 1
- Views: 419
- 22.06.2009, 19:25
- Forum: 6.6 - stable
- Topic: [6.6.5 Stable] Couple of questions to install
- Replies: 2
- Views: 560
[6.6.5 Stable] Couple of questions to install
Hello I read the PDF to install the latest ZeosLib into Delphi 2007, and have a couple of questions: 1. The PDF mentions "ZeosDbo.groupproj", but not "ZeosDboDev.groupproj" and "ZPlain.bdsproj": What are those two project files for? 2. The PDF says that after compiling ...
- 01.06.2009, 21:57
- Forum: 6.6 - stable
- Topic: [Delphi/TZUpdateSQL vs. TZQuery] Making changes?
- Replies: 1
- Views: 828
[Delphi/TZUpdateSQL vs. TZQuery] Making changes?
Hello I'm told that to it's possible to make changes to a dataset in Delphi using either TZQuery (which I thought could only SELECT data) or TZUpdateSQL. I find using the same component (TZQuery) to read and write data more natural than relying on a second component, so could someone tell me in whic...
- 31.05.2009, 00:14
- Forum: Firebird
- Topic: Smarter way to run queries?
- Replies: 1
- Views: 560
Smarter way to run queries?
Hello I'm reading "The Firebird Book" and am trying to build a very basic Delphi application to connect to a Firebird server. I was wondering: Is there a smarter, easier way to run queries like this? With ZQuery1 do begin Connection := ZConnection1; Sql.Clear; //How to check if a table alr...
- 26.05.2009, 12:37
- Forum: Firebird
- Topic: [ZeosLib + Delphi 2007] "Hello, world!" to get sta
- Replies: 5
- Views: 963
- 26.05.2009, 11:40
- Forum: Firebird
- Topic: [ZeosLib + Delphi 2007] "Hello, world!" to get sta
- Replies: 5
- Views: 963
- 25.05.2009, 23:33
- Forum: Firebird
- Topic: [ZeosLib + Delphi 2007] "Hello, world!" to get sta
- Replies: 5
- Views: 963
At this point, I was able to create a database file, create a table within, but fail INSERTing a record and read it back: procedure TForm1.FormCreate(Sender: TObject); var MyDB,MyUSER,MyPASSWORD : String; begin MyDB := 'C:\test.firebird'; MyUSER := 'SYSDBA'; MyPASSWORD := 'masterkey'; With ZConnecti...
- 25.05.2009, 22:44
- Forum: Firebird
- Topic: [ZeosLib + Delphi 2007] "Hello, world!" to get sta
- Replies: 5
- Views: 963
[ZeosLib + Delphi 2007] "Hello, world!" to get sta
Hello I think I managed to successfully compile and install ZeosLib 6.6.4 in Delphi 2007. I'm having a bit of difficulty, however, getting started even with "examples\simple\ZSimpleMain.pas" because it uses a lot of extra stuff (TZSQLMonitor, TZSequence, properties, etc.), and am stuck at ...
- 19.05.2009, 12:44
- Forum: 6.6 - stable
- Topic: [Delphi] Simple example to connect to FB server?
- Replies: 3
- Views: 756
- 19.05.2009, 11:53
- Forum: 6.6 - stable
- Topic: [Delphi] Simple example to connect to FB server?
- Replies: 3
- Views: 756
I just got a little further, but I'm getting two errors (Firebird 2.1.2, ZeosLib 6.6.4): 1. The Firebird installer provides FBCLIENT.DLL, but ZeosLib expects either FBCLIENT20.DLL or FBCLIENTD.DLL. I copied FBCLIENT.DLL as FBCLIENTD.DLL, and ZeosLib seemed happy, but... 2. ... when I reran the progr...
- 19.05.2009, 00:56
- Forum: 6.6 - stable
- Topic: [Delphi] Simple example to connect to FB server?
- Replies: 3
- Views: 756
[Delphi] Simple example to connect to FB server?
Hello I'm not a Delphi expert, and am having a bit of difficulty going through even the simplest of the samples "examples\simple\ZSimpleMain.pas", as it uses things like ZSQLMonitor and ZSequence that I haven't seen before, uses uses Properties instead of accessing data directly, etc. By a...
- 18.05.2009, 16:33
- Forum: 6.6 - stable
- Topic: [D2009/ZParseSql] File not found: 'ZPostgreSqlToken.dcu'
- Replies: 5
- Views: 765
Yup, I'll just write an installer to install the EXE and the Firebird client DLL's. BTW, does someone have a very simple tutorial on how to get started with the DBGrid component, ZeosLib, and FireBird? I just need something that would show me how to connect to the server, send a SELECT, and watch th...
- 18.05.2009, 15:39
- Forum: 6.6 - stable
- Topic: [D2009/ZParseSql] File not found: 'ZPostgreSqlToken.dcu'
- Replies: 5
- Views: 765
I can compile OK if I leave zeos.inc alone, but it fails if I comment out DBMS I don't need (MySQL, PostgreSQL, etc.) and only keep Firebird: ZInterbaseToken.pas(61): F1026 File not found: 'ZPostgreSqlToken.dcu' //This line: uses Classes, ZTokenizer, ZGenericSqlToken, ZPostgreSqlToken; BTW, unless I...
- 15.05.2009, 15:46
- Forum: 6.6 - stable
- Topic: [D2009/ZParseSql] File not found: 'ZPostgreSqlToken.dcu'
- Replies: 5
- Views: 765
I removed the whole directory, redownloaded the Stable version, didn't edit src\zeos.inc: ZCore and ZParseSQL compile OK, but I get errors when compiling Zplain: [DCC Error] ZPlainPostgreSqlDriver.pas(1005): E2010 Incompatible types: 'AnsiChar' and 'Char' [DCC Error] ZPlainPostgreSqlDriver.pas(1018)...
- 15.05.2009, 14:49
- Forum: 6.6 - stable
- Topic: [D2009/ZParseSql] File not found: 'ZPostgreSqlToken.dcu'
- Replies: 5
- Views: 765
[D2009/ZParseSql] File not found: 'ZPostgreSqlToken.dcu'
Hello I'm a Delphi newbie and am trying to install ZeosLib in Delphi2009 for the time to try to connect to a Firebird server. I followed gto's Zeos Quick Start Guide , ie. unzip, add the root of Zeos directory + packages\delphi11\build, and compile. After editing src\Zeos.inc to just compile for Fir...