Re: [Tutor] put query result set into dictionary

2010-11-11 Thread Shawn Matlock
result set into dictionary "Shawn Matlock" wrote > I am trying to put the results of a MySQL query into a dictionary. > It fails because it includes the Unicode delimiter - "u'somevalue'". I don't think so... > envsql = "select envVariable, e

Re: [Tutor] put query result set into dictionary

2010-11-10 Thread Alan Gauld
"Shawn Matlock" wrote I am trying to put the results of a MySQL query into a dictionary. It fails because it includes the Unicode delimiter - "u'somevalue'". I don't think so... envsql = "select envVariable, envValue from ODS_ENV_DICT where envName = 'ST2'" csdbCursor.execute(envsql) e

Re: [Tutor] put query result set into dictionary

2010-11-10 Thread Joel Goldstick
On Wed, Nov 10, 2010 at 5:18 PM, Shawn Matlock wrote: > Let’s see if I can ask the right questions the right way. I am trying to > put the results of a MySQL query into a dictionary. It fails because it > includes the Unicode delimiter - “u’somevalue’”. Can someone tell me the > right way to do t

[Tutor] put query result set into dictionary

2010-11-10 Thread Shawn Matlock
Let's see if I can ask the right questions the right way. I am trying to put the results of a MySQL query into a dictionary. It fails because it includes the Unicode delimiter - "u'somevalue'". Can someone tell me the right way to do this, please? Thank you, Shawn csdbConn = zxJDBC.connec