Search found 10 matches

by niztor
21.07.2010, 21:08
Forum: 6.6 - stable
Topic: Zeus 6.6.6 lastest patches sources
Replies: 1
Views: 500

Zeus 6.6.6 lastest patches sources

Hi.
Im using 6.6.5-stable and want to upgrade to lastest stable. I see lastest posted in forum is 6.6.6-stable at dic 2009.
Are there any new patches since then ?
What if i get the svn version at svn://zeos.firmos.at/zeos/6.6-patches/ instead ?

Thanks!
by niztor
28.10.2009, 19:20
Forum: 6.6 - stable
Topic: How to optimize this codding
Replies: 8
Views: 973

I think the most important parameter for speed is Autocommit. if you set Autocommit := True every insert statement you execute starts its own transaction, so the database need to setup a transaction enviroment for every statement. Setting Autocommit:= False before the bulk insert implies just one tr...
by niztor
27.10.2009, 15:47
Forum: 6.6 - stable
Topic: Can't append records to SQLite3-DB's
Replies: 2
Views: 523

What version of Zeos are you using ?
I was playing with sqlite3 and Zeos 6.6.5 a couple of days ago and i experienced the same with TZQuery. Then i switched

Code: Select all

TransactIsolationLevel := tiNone
and that worked for me.
by niztor
21.07.2009, 14:32
Forum: 6.6 - stable
Topic: Copy / Duplicating a Dataset
Replies: 2
Views: 425

I'm not sure what you are trying to do, but you can use a TClientDataSet to make a copy in-memory of your dataset.
by niztor
11.01.2007, 01:27
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Problem Zeos Beta 6.6.0 Blob Fields and postgres-7 driver
Replies: 1
Views: 550

Problem Zeos Beta 6.6.0 Blob Fields and postgres-7 driver

Hi! I'm trying to use that beta version. i've got found some problems when using the postgres-7 driver and blob fields. Digging into sources i've found in ZPlainPostgresSqlDriver.pas function TZPostgreSQL7PlainDriver.DecodeBYTEA(value: string): string; begin Result:= value; end; it's not decoding no...
by niztor
18.01.2006, 22:12
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Default values on new record
Replies: 6
Views: 1508

maybe this can help:

http://seegernet.koolhost.de/zeosforum/ ... .php?t=298

it removes Required property in columns with default values, then Zeos
uses default values.
by niztor
04.01.2006, 01:02
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Required Property
Replies: 1
Views: 753

I had the same problem on fields with default values. Zeos does not permit a field to be 'nullable' if it's defined as not null. So i did a nasty patch in ZDbcPostgresSqlMetadata, to allow fields with default values (and not null defined) be nullables. ZDbcPostgreSQLMetadata.pas function TZPostgreSQ...
by niztor
07.11.2005, 22:33
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Problem with sequences in Postgres 7.4, Bug ?
Replies: 1
Views: 804

Sorry, i'm answering myself. the 'LIMIT 1' line , does not work in tables without records.
So the problem extends to empty tables in a diferent way.
Any other posible solutions ?

niztor.-
by niztor
07.11.2005, 21:18
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Problem with sequences in Postgres 7.4, Bug ?
Replies: 1
Views: 804

Problem with sequences in Postgres 7.4, Bug ?

PostgreSQL 7.4.8 Zeos 6.5.1 alpha CVS as of 13/10/2005 My english is terrible, so i'll try to explain this by example. I've got a table defined like CREATE TABLE blah ( nid serial , cod integer , txt char(30) ); 'nid' field is defined as a sequence , now if you insert records with just a dbgrid (and...
by niztor
04.11.2005, 19:32
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Bug report: Postgres bytea fields twice decoded.
Replies: 1
Views: 954

Bug report: Postgres bytea fields twice decoded.

First, sorry my english. I've found a bug in zeos's handling of bytea blob fields. It is double decoding blob fields. zeosdbo-6.5.1-alpha_cvs_13-10-2005.zip ZDbcPostgresSqlResultSet.pas: scope function TZPostgreSQLResultSet.GetBlob(ColumnIndex: Integer): IZBlob; var BlobOid: Oid; Stream: TStream; be...