Search found 17 matches

by snorkel
02.09.2005, 19:08
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: How to return the error codes of the PostgreSQL server?
Replies: 6
Views: 3839

Note, this won't catch RAISE NOTICE statements from a function.
Lightning wrote:This should work with all protocols:

[php]try
somecode ..
except
on E: EZSQLException do
begin
E.ErrorCode // Do something with ErrorCode
E.MEssage // Do something with Message
end;
end;[/php]
by snorkel
01.09.2005, 19:13
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Unicode and Zeos and Postgresql
Replies: 1
Views: 1370

Unicode and Zeos and Postgresql

Hi, I have a test postgres database that has a encoding of UNICODE, I can paste in unicode strings in PG Admin III, and when I try to display them in Delphi with the TNT(http://www.tntware.com/delphicontrols/unicode/) controls they come back all garbled up. I am not using the CVS version of zeos. Th...