Search found 36 matches

by cariad
21.02.2006, 08:43
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Batch Insert
Replies: 4
Views: 1343

Problem solved. It seems to be a regression from 6.1.5, but it's possible to use the TZSQLProcessor to do multi-statements.

More info in this thread http://seegernet.koolhost.de/zeosforum/ ... .php?t=299
by cariad
20.02.2006, 11:07
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Batch Insert
Replies: 4
Views: 1343

I'm afraid it doesn't change anything. That's basically what I did (except for using TZReadOnlyQuery). I tried 6.5.1-alpha, lastest CVS, and 6.1.5-stable. I think it's confused by the ';' at the end of an SQL statement. Did you strip comments, or change your SQL in any way ? I guess I'll have to spl...
by cariad
17.02.2006, 14:47
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Batch Insert
Replies: 4
Views: 1343

Batch Insert

Hello, I'm trying to run a generated SQL script as one SQL query, but keep getting errors when parsing request. I tried TZQuery.SQL.Text TZQuery.SQL.LoadFromFile(), ... but to no avail. Am I overlooking something ? Is there a supported way to run a script against an already connected DB ? Thanks in ...
by cariad
02.02.2006, 15:19
Forum: Firebird
Topic: Firebird Embedded and C++ Builder Code
Replies: 2
Views: 2347

Hello, No, you can't just use localhost (that would assume the server is running which is not the case). Just use the filename as the database name, and an empty host. Connection := TZConnection.Create(myOwner); Connection.Protocol := 'firebird-1.5'; Connection.HostName := ''; Connection.Database :=...
by cariad
02.12.2005, 15:10
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Batch INSERT : Trying to speed things up
Replies: 0
Views: 778

Batch INSERT : Trying to speed things up

Hello, I'm using zeoslib alpha with Delphi 7 on an embedded Firebird DB doing a batch insert in a table (between 300K and 18M records). Basically, I read from an ASCII file, convert some values, and create the SQL query to insert a new row. On average speed is about 500 records/s. I played a bit wit...
by cariad
20.10.2005, 14:13
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Firebird 1.5.2 : Error creating embedded DB
Replies: 1
Views: 759

Firebird 1.5.2 : Error creating embedded DB

Hello, I was pleased to see the forum is back online, and just upgraded to the lastest Sourceforge released CVS. I'm having a problem with code which worked perfectly with previous release. I'm trying to create an embedded Firebird database. I use something like this Connection := TZConnection.Creat...