Search found 4 matches

by tomcmok
09.03.2007, 14:50
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Firebird and underscores in tablenames
Replies: 2
Views: 954

Firebird and underscores in tablenames

hi,

It seams that TZInterbase6DatabaseMetadata.HasNoWildcards gives wrong result if the table name passed to it as a parameter contains underscore - i.e. CUSTOMER_PROJECT

any suggestion for quick workaround?

Tomasz
by tomcmok
09.03.2007, 13:48
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: 6.6.0 beta, Firebird, DEFAULT NULL in domain *AND* in table
Replies: 2
Views: 1167

Mark,

Thanks for the reply, I'll register a bug. I think I've also found another one in the Firebird dbc - and I register it there as well

Cheers
by tomcmok
07.03.2007, 14:24
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: 6.6.0 beta, Firebird, DEFAULT NULL in domain *AND* in table
Replies: 2
Views: 1167

6.6.0 beta, Firebird, DEFAULT NULL in domain *AND* in table

try this: CREATE DOMAIN BASENAZWANULL AS VARCHAR(100) CHARACTER SET WIN1250 DEFAULT NULL COLLATE PXW_PLK; CREATE TABLE TEST ( ID INTEGER NOT NULL, TEST BASENAZWANULL DEFAULT null ); ...then put on a form simple TZQuery, set it's SQL to "select * from TEST"and connect a dbGRid to it and try...
by tomcmok
14.03.2006, 15:52
Forum: 6.1.5
Topic: ISAPI -> ADO -> MSSQL - IIS and other web servers diff
Replies: 0
Views: 1092

ISAPI -> ADO -> MSSQL - IIS and other web servers diff

Hi, I have strange problem. I ported the ISAPI module from BDE to ZEOS and connecting to MSSQL via ADO or dbLib. The strange thing about ADO is that it works ok with IIS but fails with AV on other web servers (i.e. Sambar, WebWeaver). The problem occurs in: procedure TZAdoConnection.Close; var LogMe...