Simon Brunning wrote:
On Apr 12, 2005 4:32 PM, Gabriel Cooper <[EMAIL PROTECTED]> wrote:
Usually when I access db search results it's something like this:
cursor.execute("select A1,A2,A3,A4 from B where C")
for (a1,a2,a3,a4) in cursor.fetchall():
stuff()
But sometimes the p
On Apr 12, 2005 4:32 PM, Gabriel Cooper <[EMAIL PROTECTED]> wrote:
> Usually when I access db search results it's something like this:
>
> cursor.execute("select A1,A2,A3,A4 from B where C")
> for (a1,a2,a3,a4) in cursor.fetchall():
> stuff()
>
> But sometimes the point at which I use the dat
Usually when I access db search results it's something like this:
cursor.execute("select A1,A2,A3,A4 from B where C")
for (a1,a2,a3,a4) in cursor.fetchall():
stuff()
But sometimes the point at which I use the data returned is not with the
search, and so having the ability to access the results