473,395 Members | 1,458 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

getting an empty tuple

Hey there,
i have a simple database query that returns as a tuple the number of
rows that the query selected.
kinda like this
cursor.execute('select value from table where autoinc > 234')
x = cursor.fetchall()
print x 21L
ok, means 21 rows met the criteria of the query. but if there are none
that match,
like i do a
print x
0L


how do i encorporate that into an equation ?
i have tried all kinds of stuff

if x == 0L
if x(0) == None
if x == None

anyway, what shoud i do to test if the result is empty?

thanks

Jul 31 '05 #1
3 4850
On 31 Jul 2005 08:40:26 -0700, ne*****@xit.net <ne*****@xit.net> wrote:
how do i encorporate that into an equation ?
i have tried all kinds of stuff

if x == 0L
if x(0) == None
if x == None

anyway, what shoud i do to test if the result is empty?


Just like any other test:

if not x:

--

# p.d.
Jul 31 '05 #2
On Sun, 31 Jul 2005 08:40:26 -0700, nephish wrote:
Hey there,
i have a simple database query that returns as a tuple the number of
rows that the query selected.
kinda like this
cursor.execute('select value from table where autoinc > 234')
x = cursor.fetchall()
print x 21L

21L is not a tuple, it is a long integer.
ok, means 21 rows met the criteria of the query. but if there are none
that match,
like i do a
print x
0L

how do i encorporate that into an equation ?
i have tried all kinds of stuff


And did they work? If they didn't work, tell us the exact error message
you got.

if x == 0L
If x is a long integer, then that will work. Of just "if x == 0:" will
work too.

if x(0) == None
No. That means x is a function, and you are giving it an argument of 0,
and it returns None.
if x == None
You said that your query returns a tuple, but then gave an example where
it returns a long int. None is not a tuple, nor a long int, so testing
either of those things against None will never be true.

Did you try any of these things in the interactive interpreter? Python is
a great language for experimenting, because you can try this yourself:

# run your setup code ...
# and then do some experimenting
cursor.execute('select value from table where autoinc > 99999999')
# or some value that will never happen
x = cursor.fetchall()
print x

What do you get?

anyway, what shoud i do to test if the result is empty?


Long ints are never empty, but they can be zero:

if x == 0:
print "no rows were found"
elif x == 1:
print "1 row was found"
else:
print "%d rows were found" % x

Tuples can be empty:

if len(x) == 0:
print "no rows were found"

or if you prefer:

if x == ():
print "no rows were found"
But the cleanest, most Pythonic way is just to do a truth-test:

if x:
print "something was found"
else:
print "x is empty, false, blank, nothing..."
--
Steven.

Jul 31 '05 #3
ok, this is what works:
if x == ():

sorry about the bad info. and what i ment to put was
x[0] not x(0)

thanks for the tips
its all good now

shawn
Steven D'Aprano wrote:
On Sun, 31 Jul 2005 08:40:26 -0700, nephish wrote:
Hey there,
i have a simple database query that returns as a tuple the number of
rows that the query selected.
kinda like this
> cursor.execute('select value from table where autoinc > 234')
> x = cursor.fetchall()
> print x

> 21L


21L is not a tuple, it is a long integer.
ok, means 21 rows met the criteria of the query. but if there are none
that match,
like i do a
> print x
> 0L


how do i encorporate that into an equation ?
i have tried all kinds of stuff


And did they work? If they didn't work, tell us the exact error message
you got.

if x == 0L


If x is a long integer, then that will work. Of just "if x == 0:" will
work too.

if x(0) == None


No. That means x is a function, and you are giving it an argument of 0,
and it returns None.
if x == None


You said that your query returns a tuple, but then gave an example where
it returns a long int. None is not a tuple, nor a long int, so testing
either of those things against None will never be true.

Did you try any of these things in the interactive interpreter? Python is
a great language for experimenting, because you can try this yourself:

# run your setup code ...
# and then do some experimenting
cursor.execute('select value from table where autoinc > 99999999')
# or some value that will never happen
x = cursor.fetchall()
print x

What do you get?

anyway, what shoud i do to test if the result is empty?


Long ints are never empty, but they can be zero:

if x == 0:
print "no rows were found"
elif x == 1:
print "1 row was found"
else:
print "%d rows were found" % x

Tuples can be empty:

if len(x) == 0:
print "no rows were found"

or if you prefer:

if x == ():
print "no rows were found"
But the cleanest, most Pythonic way is just to do a truth-test:

if x:
print "something was found"
else:
print "x is empty, false, blank, nothing..."
--
Steven.


Jul 31 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

23
by: Fuzzyman | last post by:
Pythons internal 'pointers' system is certainly causing me a few headaches..... When I want to copy the contents of a variable I find it impossible to know whether I've copied the contents *or*...
3
by: Dave Opstad | last post by:
I fully understand why this happens: ---------------------------- >>> a = , , , , ] >>> b = ] * 5 >>> a , , , , ] >>> b , , , , ] >>> a == b
1
by: fedor | last post by:
Hi all, happy new year, I was trying to pickle a instance of a subclass of a tuple when I ran into a problem. Pickling doesn't work with HIGHEST_PROTOCOL. How should I rewrite my class so I can...
4
by: s99999999s2003 | last post by:
hi the database "execute" function returns a list of logical results. Each logical result is a list of row tuples, as explained in the documents. everytime i use it to execute various...
2
by: Alan Isaac | last post by:
I am probably confused about immutable types. But for now my questions boil down to these two: - what does ``tuple.__init__`` do? - what is the signature of ``tuple.__init__``? These...
9
by: Plissken.s | last post by:
Hi, how can i compare a string which is non null and empty? i look thru the string methods here, but cant find one which does it? ...
0
by: rautsmita | last post by:
hello friends , i am using to jdk6 and JAXB2.0, i have geomtry.xsd file i am trying to compile this file using jaxb but i got some error i.e.The particle of the type is not a valid restriction of...
20
by: Sun | last post by:
Maybe this is a very primative question, but I just get a bit confused about 'set' and 'Set' module in python. I understand 'set' is a build in type in python after 2.4(or 2.3) and Set a...
4
by: Alex Vinokur | last post by:
Here is some tuple (triple in this case) with uniform types (for instance, double): boost::tuple<double, double, doublet; Is there any way (in boost::tuple) to define such tuples something like...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.