Search found 12 matches

by noelc
24.07.2006, 14:29
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: different TZConnection classes for diferent sql servers
Replies: 12
Views: 1798

Does the 500k of extra code linked in really make all that much difference, when that code is never executed? It is not as if we are still in the era of 20MB hard disks! TZConnection works well, and it is generally not a good idea to start fixing what is not broken :)
by noelc
24.07.2006, 14:26
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: firebird CREATE DATABASE
Replies: 4
Views: 1358

Hmmm... I guess I was wrong then :-) This is useful to know. Thanks!
by noelc
24.07.2006, 14:25
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: UNICODE - PostgreSQL - Delphi7/Kylix3
Replies: 3
Views: 1270

What is the PostgreSQL column type for FSZLAEMBLEMA?
by noelc
21.07.2006, 10:29
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: autoinc fields
Replies: 4
Views: 1617

If you have not already done so, you will need to set the Required property of the generated field to False.
by noelc
21.07.2006, 10:15
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: TZUpdateSQL statement execution
Replies: 1
Views: 897

Do you have pfInKey set in the ProviderFlags property for the two primary key fields?
by noelc
21.07.2006, 10:10
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: firebird CREATE DATABASE
Replies: 4
Views: 1358

As far as I know, the CREATE DATABASE command is not interpreted by the SQL processor, but processed by the Firebird Services API. You will need to hook into this API from your app in order to create the database. This is a limitation of Firebird, and not of the Zeos components.
by noelc
18.07.2006, 16:50
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Function refresh_after_post
Replies: 3
Views: 1179

Ciao Nicola!

Forse questa La serve....

Code: Select all

try
  ZQuery.Post
  ZQuery.Resync(rmExact);
except
  ...
end;
by noelc
20.06.2006, 11:41
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Looking for compiler testers.
Replies: 7
Views: 1486

I can test with D7 & D2006 against PostgreSQL 8.x, MSSQL 2000 and 2005, Firebird 2 and various others via ADO.
by noelc
20.06.2006, 11:32
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: MySQL v.5.0 .3+ and Decimals
Replies: 11
Views: 2063

Can you post some sample Delphi code and SQL DDL/DML?
by noelc
19.06.2006, 13:44
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Range check errors on 6.5.1alpha - 20060523
Replies: 2
Views: 672

Just a quick postcript to my last message... I re-instated the {$R+} and {$R-} at the relevant points and rebuilt the packages and it works without problem now.
by noelc
19.06.2006, 11:17
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Range check errors on 6.5.1alpha - 20060523
Replies: 2
Views: 672

Range check errors on 6.5.1alpha - 20060523

Range check errors are occuring at various points in ZDBCInterbase6Utils. Each of these points is close to a comment that reads { WAS RC OFF }. I assume that range checking was previously switched off for those parts of the source - and to be honest statements such as... SqlVar := @FXSQLDA.SqlVar ; ...
by noelc
13.06.2006, 11:08
Forum: Bug Reports
Topic: [bug_fixed] Postgres 8.1 Domains
Replies: 2
Views: 1364

[bug_fixed] Postgres 8.1 Domains

Columns created using domains - in this case defined as varchar(x) - are being returned as having unknown length. Varchar columns not defined using domains are returned with the correct size. If the database is accessed via ADO then columns defined with domains are returned with the correct column s...