Search found 67 matches

by aducom
29.05.2007, 14:38
Forum: SQLite
Topic: wrong field casting
Replies: 9
Views: 3177

It is odd, since SQLite does know the fieldtype because it is depending on it's expression. Ormada, could you send a small failing sample to aducom at support dot com, I'll like to look into this deeper. Please keep out exe as you probabely already know ;-)

albert
by aducom
29.05.2007, 14:30
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Fix for SQLite's TZUpdateSQL binding bug on v6.6.1 - beta
Replies: 3
Views: 1188

The real reason why it is not working is because it is a general bug. It can be (temporarely) solved by: {** Checks the correct SQL query. } procedure TZAbstractRODataset.CheckSQLQuery; begin if Trim(FSQL.Text)='' then // 20070529 Aducom raise EZSQLException.Create(SQueryIsEmpty); // 20070529 Aducom...
by aducom
13.05.2007, 19:35
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Fix for SQLite's TZUpdateSQL binding bug on v6.6.1 - beta
Replies: 3
Views: 1188

I'll check it out.

albert
by aducom
16.04.2007, 15:59
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

If this problem is related to Lazarus then yes....
by aducom
16.04.2007, 15:56
Forum: SQLite
Topic: Connecting to SQLite DB on webserver
Replies: 2
Views: 1754

There is no provider anywhere which will allow you to access your MySQL database from outside the server for obvious reasons. If you do not need to update a lot then you can export sql and import it by using phpMyAdmin i.e. But what I don't see is what Zeos got to do with it.
by aducom
16.04.2007, 15:53
Forum: User Patches
Topic: SQLite Unicode Support
Replies: 4
Views: 3047

I'll look into it, but at first sight this is a UTF8 solution assigned to a widechar. The standard for widechar is UTF16 defined by nchar and nvarchar...
by aducom
16.04.2007, 15:50
Forum: Feature Requests
Topic: [bug_rejected] Boolean Parameter in sqlite query
Replies: 12
Views: 5145

Will look into it.

albert
by aducom
22.03.2007, 22:54
Forum: SQLite
Topic: own function
Replies: 2
Views: 1647

Have you tried the syntax on sqlite3.exe?
by aducom
22.03.2007, 22:52
Forum: Feature Requests
Topic: [bug_rejected] Boolean Parameter in sqlite query
Replies: 12
Views: 5145

In the Delphi components there's a property called 'truth value' in which you can define the boolean value to be treated. SQLite is typeless so the boolean value needs to be emulated like any other field. This is a matter of a deal and not a bug.
by aducom
14.02.2007, 09:26
Forum: SQLite
Topic: sqlite utf-8 strings
Replies: 3
Views: 2603

There are in Delphi UTF8 conversion routines you might use. If you don't need to be database independent you might want to try one of the SQLite-only wrappers as can be found on www.sqlite.org.
by aducom
27.01.2007, 03:02
Forum: SQLite
Topic: sqlite utf-8 strings
Replies: 3
Views: 2603

I cannot confirm that, you might want to convert before inserting?
by aducom
04.12.2006, 13:13
Forum: SQLite
Topic: Library name bug?
Replies: 1
Views: 1502

I don't have much knowledge about Linux implementation, but useually the names of the dll's are fixed and you need to rename the dll's (or so's) themself for access. I.e. MySQL is delivering MySQL.dll which need to be renamed to MySQL40.dll, MySQL41.dll etc. This is also the case for SQLite.
by aducom
04.12.2006, 13:10
Forum: Bug Reports
Topic: ZEOS DBO with SQLite memory leaks
Replies: 1
Views: 2929

Is this the amount of leaked data depending on the amount of data-access or constant?
by aducom
11.11.2006, 22:52
Forum: SQLite
Topic: Database is lock
Replies: 1
Views: 1661

This is SQLite nature. See www.sqlite.org.

albert
by aducom
12.10.2006, 13:53
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: step by step how to install zeos on BUILDER 2006
Replies: 2
Views: 641

In fact it goes the same as any other components. Open the appropiate packages and install: open -> select borland projectt group -> compile/install. Don't forget to add the appropiate directories of the libraries (every subdir!) to the library path to be found in environment settings. If you are lo...