Search found 7 matches
- 23.05.2007, 10:35
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Definition of TZRowBuffer.Columns (ZDBCCache.pas) too small
- Replies: 5
- Views: 1005
Definition of TZRowBuffer.Columns (ZDBCCache.pas) too small
Hi, we just stumpled across a little oddity when executing a rather large SELECT statement (lots of joins etc.). The resulting rows exceeded the hardcoded limit of 32kb per row in Zeos. This limit is defined in ZDbcCache.pas by defining the Columns as TByteArray (TByteArray is defined as array[0..32...
- 22.05.2007, 15:17
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Unicode related material
- Replies: 0
- Views: 647
Unicode related material
Is it intended that TZAbstractRODataset.SetStatementParams() does not take stUnicodeString into account?
I am currently hunting down several bottle necks regarding unicode support.
I will post further stuff I find about unicode related things in this thread.
I am currently hunting down several bottle necks regarding unicode support.
I will post further stuff I find about unicode related things in this thread.
- 22.05.2007, 13:54
- Forum: MySQL
- Topic: Using Zeos in multithread application
- Replies: 1
- Views: 1745
Re: Using Zeos in multithread application
[...] for i:=0 to q.RecordCount-1 do begin [...] q.RecNo:=i+2; end; end; finally q.Close; FreeAndNil(q); end; YazdirmaBaslat; Sleep(1000); end; finally fConnection.Disconnect; FreeAndNil(fConnection); FreeAndNil(plist); end; end; [...] Are you sure that this is correct: q.RecNo:=i+2; IMO you are ru...
- 22.05.2007, 10:48
- Forum: SQLite
- Topic: wrong field casting
- Replies: 9
- Views: 3210
- 11.05.2007, 13:51
- Forum: User Patches
- Topic: SQLite Unicode Support
- Replies: 4
- Views: 3066
- 11.05.2007, 13:27
- Forum: SQLite
- Topic: wrong field casting
- Replies: 9
- Views: 3210
- 23.03.2007, 17:28
- Forum: User Patches
- Topic: SQLite Unicode Support
- Replies: 4
- Views: 3066
SQLite Unicode Support
Hi, my first Zeos Hack. This hack allows the use of UTF8 reading from queries and tables in SQLite. There is a drawback nontheless as one will be forced to use "WIDECHAR(XXX)" as datatype in the SQLite DB. This is possible, as SQLite always considers a fieldtype to be text whenever the Key...