Re: libpq and escaping array string literals

2020-03-06 Thread Dmitry Igrishin
Hey Ted, libpq has no such a facility. If you're on C++ you may want to use Pgfe library to work with the database arrays easy. On Fri, 6 Mar 2020, 22:11 Ted Toth, wrote: > I've got so C code that interacting with a table containing a field of > type text[]. Strings I've got to put in the array

libpq and escaping array string literals

2020-03-06 Thread Ted Toth
I've got so C code that interacting with a table containing a field of type text[]. Strings I've got to put in the array may be unicode and or contain single or double quotes etc ... What's the best way to escape these strings? Ted