Search found 12 matches
- 06.06.2008, 12:54
- Forum: PostgreSQL
- Topic: date format
- Replies: 1
- Views: 851
I haven't checked but i think that when you use the .AsString method it uses the 'Short Date' format specified by windows (Held in SysUtils?) Try using the .AsDateTime to get a datetime value and then use the (SysUtils) FormatDateTime function to convert that into a string with the formatting parame...
- 28.11.2007, 17:22
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Reg Cann't Instal Zeos 6.6.0 beta
- Replies: 1
- Views: 991
- 27.11.2007, 16:19
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: SQL Get the Date only from DateTimestamp Field?
- Replies: 3
- Views: 1199
I don't know firebird at all. The link below has an example of casting time/date types in firebird.
http://www.firebirdsql.org/index.php?op ... stenried_1
http://www.firebirdsql.org/index.php?op ... stenried_1
- 27.11.2007, 12:55
- Forum: MS SQL Server
- Topic: sqlserver 2005
- Replies: 5
- Views: 5171
Microsoft view regarding using dblib
Although this isn't an answer to your problem it is related to using dblib. This is a quote from the microsoft forum: Although the SQL Server 2005 Database Engine still supports connections from existing applications using the DB-Library and Embedded SQL APIs, it does not include the files or docume...
- 27.11.2007, 12:27
- Forum: Firebird
- Topic: performance
- Replies: 6
- Views: 3078
- 27.11.2007, 12:20
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: SQL Get the Date only from DateTimestamp Field?
- Replies: 3
- Views: 1199
- 27.11.2007, 11:41
- Forum: MS SQL Server
- Topic: Zeos connect to MSSQL 7 server
- Replies: 1
- Views: 2797
MSSQL connection details
Put your parameters to connect to the database in the databse property of the TZConnection.
e.g.
zConnection1.Database := 'Provider=SQLOLEDB.1;Password=XXXX;Persist Security Info=True;User ID=SA;Initial Catalog=MLMH;Data Source=ANDROMEDA'
e.g.
zConnection1.Database := 'Provider=SQLOLEDB.1;Password=XXXX;Persist Security Info=True;User ID=SA;Initial Catalog=MLMH;Data Source=ANDROMEDA'
- 14.08.2006, 13:32
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Delphi 2006 loading libraries
- Replies: 3
- Views: 1514
The libpq.dll loads other dll files. In Version 8.1 of Postgres libpq.dll relies on the following dlls: comerr32 libeay32 libintl-2.dll libiconv-2.dll krb5_32.dll ssleay32.dll Applications written with Borland Developer Studio 2006 is not reporting the error messages when libpq.dll fails to load the...
- 14.08.2006, 10:18
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Installation problems with d2006
- Replies: 10
- Views: 3133
- 14.07.2006, 11:11
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Delphi 2006 loading libraries
- Replies: 3
- Views: 1514
Delphi 2006 loading libraries
I'm using Delphi 2006 and versoin 6.5.1 zeos with Posgres V8.1. Zeos reports that it can't find either libpq81.dll or libpq.dll when I try connecting to the server. Stepping through the code shows that loadlibrary is not returning a handle. I wrote a test appication to see what was happening. I spec...
- 13.07.2006, 18:41
- Forum: PostgreSQL
- Topic: Allow my app to connect via internet
- Replies: 2
- Views: 3113
Postgres over the internet.
Hi Shomar, You don't say how you are connecting across the internet. You need to make sure tha you have a route configured between the client and server. Have you got your gateway addresses set correctly, if you are using a proxy have you got the correct proxy type configured and using the correct u...
- 24.03.2006, 12:47
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Check the existance of a TABLENAME
- Replies: 10
- Views: 4800
I'm not quite sure if I've misunderstood what you have done with the ZConnection.GetTableName(). The 'Pattern' you pass is used to find matches on the table names. If you pass in an empty string you get a full list of tables. If you need to find a single table eg. a table called 'employees', set the...