Re: [SQLObject] Passing a selectResults object to a get causes hang

2008-12-29 Thread Oleg Broytmann
On Mon, Dec 29, 2008 at 03:59:08PM +, Matthew Wilson wrote: > sr = X.select(IN(X.q.id, [1, 3, 4])) > x3 = X.get(3, selectResults=sr) Though the parameter is called 'selectResults', it is a different result, not a result of .select(), but a result of cursor.fetchone(). Look into dbconnection

[SQLObject] Passing a selectResults object to a get causes hang

2008-12-29 Thread Matthew Wilson
I'm trying to do something like this: sr = X.select(IN(X.q.id, [1, 3, 4])) x3 = X.get(3, selectResults=sr) And the system just hangs. Any ideas? -- ___ sqlobject-discuss mail