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
Search found 4 matches
- 09.03.2007, 14:50
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Firebird and underscores in tablenames
- Replies: 2
- Views: 972
- 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: 1178
- 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: 1178
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...
- 14.03.2006, 15:52
- Forum: 6.1.5
- Topic: ISAPI -> ADO -> MSSQL - IIS and other web servers diff
- Replies: 0
- Views: 1100
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...