Search found 7 matches
- 05.08.2010, 18:47
- Forum: 6.6 - stable
- Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
- Replies: 5
- Views: 1159
- 05.08.2010, 17:52
- Forum: 6.6 - stable
- Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
- Replies: 5
- Views: 1159
- 05.08.2010, 08:31
- Forum: 6.6 - stable
- Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
- Replies: 5
- Views: 1159
- 04.08.2010, 16:11
- Forum: 6.6 - stable
- Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
- Replies: 5
- Views: 1159
Delphi 2005 + zeos + Postgresql - reconnect problem
Hi,
I have problem with reconnect to postgresql server after stop service and start service. I get Access violation in ntdll.dll Exception.
I use DB.Reconnect;
Any ideas?
I have problem with reconnect to postgresql server after stop service and start service. I get Access violation in ntdll.dll Exception.
I use DB.Reconnect;
Any ideas?
- 13.05.2010, 11:52
- Forum: 6.6 - stable
- Topic: Zeos + Postgresql + D2005
- Replies: 4
- Views: 479
- 11.05.2010, 22:44
- Forum: 6.6 - stable
- Topic: Zeos + Postgresql + D2005
- Replies: 4
- Views: 479
we don't need it ;) i solved that problem. in table declaration is: ( id serial NOT NULL, vname text, vvalue text, CONSTRAINT pk_eknr_cfg PRIMARY KEY (id) ) but the solution is: SELECT CAST (vname AS varchar(100)) AS vname,CAST(vvalue AS varchar(100)) AS vvalue, id FROM schemat.baza WHERE vname ~* :...
- 11.05.2010, 13:03
- Forum: 6.6 - stable
- Topic: Zeos + Postgresql + D2005
- Replies: 4
- Views: 479
Zeos + Postgresql + D2005
Hi, i have problem with CAST expression AS type commend. I use TZQuery and i want to get TStringField fileds from column (type - text). So i try: SELECT CAST (vname AS varchar(100)),CAST(vvalue AS varchar(100)), id FROM schemat.baza WHERE vname ~* :var_name ORDER BY vname,id and i get : vname - TStr...