I have the following table:
then I insert some data:CREATE TABLE test (a text)
When doingINSERT INTO test VALUES ('\\path\\testdir\\')
in the pqAdmin III Query application the results are as expected (\path\testdir\).SELECT * FROM test
When using Delphi7 + zeosdbo-6.6.2-rc I get
The backslash is gone! Why? I have tried a lot of different stuff codepage, client_encoding, forcing binary stream instead of ascii stream.pathtestdir
I have also been experiencing with different implementations of utf8_encoding, but no matter how I do it, my client app wont display (or retreive for that matter) the backslash, only pgAdmin will...
Can someone please help me on this.
Kind regards,
Jon