Search found 7 matches

by stepel
05.08.2010, 18:47
Forum: 6.6 - stable
Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
Replies: 5
Views: 1142

I installed.. and the problem still exists...
by stepel
05.08.2010, 17:52
Forum: 6.6 - stable
Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
Replies: 5
Views: 1142

hmm if i want to install zeos 7 i have to remove zeos component 6.6.6 ? Because i have problem with install (compile all projects). I get error sth about ftWideMemo: here

stUnicodeStream:
Result := {$IFDEF VER150BELOW}ftWideString{$ELSE}ftWideMemo{$ENDIF};
by stepel
05.08.2010, 08:31
Forum: 6.6 - stable
Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
Replies: 5
Views: 1142

yes i did like u write. When query didn't execute then i try to reconnect. I'll check zeos 7
by stepel
04.08.2010, 16:11
Forum: 6.6 - stable
Topic: Delphi 2005 + zeos + Postgresql - reconnect problem
Replies: 5
Views: 1142

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?
by stepel
13.05.2010, 11:52
Forum: 6.6 - stable
Topic: Zeos + Postgresql + D2005
Replies: 4
Views: 465

Yes maybe, but the most important is that everything work :)
by stepel
11.05.2010, 22:44
Forum: 6.6 - stable
Topic: Zeos + Postgresql + D2005
Replies: 4
Views: 465

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 ~* :...
by stepel
11.05.2010, 13:03
Forum: 6.6 - stable
Topic: Zeos + Postgresql + D2005
Replies: 4
Views: 465

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...