Re: [GENERAL] array quotation problem

2006-12-27 Thread Sim Zacks
I solved my specific problem by converting the array to a python as follows: objlist=arr_text[1:-1].replace('"','').split(",") This removes the quotes in any element that had it already, and then makes a list out of the string separated by commas. I'm still curious if it is possible to put the qu

[GENERAL] array quotation problem

2006-12-26 Thread Sim Zacks
select version(); "PostgreSQL 8.0.1 on i686-pc-linux-gnu, compiled by GCC i686-pc-linux-gnu-gcc (GCC) 3.3.5 (Gentoo Linux 3.3.5-r1, ssp-3.3.2-3, pie-8.7.7.1)" In short: Does anyone have any idea of how to put non escaped quotes into a text array element in the same way that the system puts no