Search found 67 matches

by aducom
02.06.2008, 14:36
Forum: SQLite
Topic: How to create a database in memory?
Replies: 5
Views: 2740

Yes, attach a real db with table and use simple sql to copy the data. You cannot just 'save'. Then you should consider using a real table in the first place
by aducom
02.06.2008, 14:34
Forum: Feature Requests
Topic: [bug_rejected] Boolean Parameter in sqlite query
Replies: 12
Views: 5145

AFAIK there's no real approach about how the true/false data needs to be stored in any database. However it isn't that difficult to use strtobool and bool tostr because of the standard vars in Delphi: TrueBoolStrs and FalseBoolStrs. Both are of type stringarray and you fill it with the different tru...
by aducom
22.01.2008, 11:54
Forum: Feature Requests
Topic: [bug_rejected] Boolean Parameter in sqlite query
Replies: 12
Views: 5145

Point is, is it the best solution to all databases? Just to save a byte?
by aducom
22.01.2008, 11:51
Forum: Feature Requests
Topic: [bug_fixed] Improve Sqlite3 Column Affinity
Replies: 6
Views: 3446

I always recommend to fully type out the types. SQLite is of origin typeless and datatypes needs to be emulated. In version 3 there are a few datatypes, but what's the advantage of 'crypling' names, just the few bytes to type or to prevent typo's?
by aducom
22.01.2008, 11:48
Forum: SQLite Administrator
Topic: Bug in Data Insert
Replies: 4
Views: 2134

There's no way to address an error like this. What exactly have you done?
by aducom
22.01.2008, 11:46
Forum: SQLite
Topic: Blob-Support for Files > 1 MB
Replies: 4
Views: 2030

There's an error limiting blobs on sqlite within sqlite3.dll. It's been addressed and afaik it will be in the next formal release.
by aducom
22.01.2008, 11:44
Forum: SQLite
Topic: I Can't Open SQLite DataBases
Replies: 1
Views: 1573

You can't get the same error from sqlite3.exe since this is a typical Delphi message. Why can't the db be opened by sqlite3.exe?
by aducom
25.09.2007, 13:19
Forum: SQLite
Topic: multiple databases
Replies: 1
Views: 1357

I must confess that I don't realy understand what you want to do. You can using more than one db connection but if you use sqlite then I would advise to use separate databases. Since sqlite locks on update the entire database you might fall in to locking problems. If you have the several databases y...
by aducom
06.09.2007, 10:49
Forum: SQLite
Topic: possible memory leaks
Replies: 11
Views: 3308

I've been looking at this but couldn't actually find something. I thought it had to do with the lazaras package?
by aducom
29.06.2007, 20:58
Forum: SQLite
Topic: how to vacuum?
Replies: 1
Views: 1728

Appearantly. Other solution is to use the auto-vacuum pragma which is rather new. It's not possible to execute vacuum when a tranaction is open.
by aducom
30.05.2007, 08:01
Forum: SQLite Administrator
Topic: Swedish characters (ÅÄÖ) in path
Replies: 7
Views: 3650

ok
by aducom
29.05.2007, 15:15
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Memory Leak - Zeoslib 6.6.1 - Beta, Delphi 7, SQLite 3.3.15
Replies: 8
Views: 3052

OK, I would appreciate a small sample with the problem and I'll look into it. Please mail it to support at aducom dot com without exe.

albert
by aducom
29.05.2007, 15:08
Forum: SQLite Administrator
Topic: Default Sqlite database version
Replies: 1
Views: 2037

I've changed it to sqlite 3 and posted it. It probabely will be solved in cvs soon.
by aducom
29.05.2007, 14:56
Forum: SQLite Administrator
Topic: Swedish characters (ÅÄÖ) in path
Replies: 7
Views: 3650

Why not: function TZSQLite3PlainDriver.Open(const filename: PChar; mode: Integer; var errmsg: PChar): Psqlite; var Result0: Psqlite; begin Result0:= nil; if (LibVersion > '3.2.5') then ZPlainSqLite3.sqlite_open(PAnsiChar(AnsiToUTF8(FileName)), Result0) else ZPlainSqLite3.sqlite_open(filename, Result...
by aducom
29.05.2007, 14:43
Forum: User Patches
Topic: SQLite Unicode Support
Replies: 4
Views: 3047

This does not seems to be a ZEOS general solution to me.