I'm new to python. I'm trying to query a MSSQL database.


import pymssql
conn = pymssql.connect(host='hostname', user='username', password='password', database='dbname')
cursor = conn.cursor()
sql = "select count(*) from T_Email with (nolock) where Transmit is null"
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
  print (row)

The query successfully runs is Microsoft SQL Server Management Studio, but my python script always returns nothing.

I verified I have network connectivity. I verified the username, password and database name. If I change the password, then the script will give an error.

I have tried results = cursor.fetchone(), but that didn't help.

Any suggestions?

link|improve this question
2  
Can you try and print the results object and tell whats the output? – Urjit Aug 30 '11 at 23:57
@Magd i'm having the exact same issue, did you figure out what was wrong? – kefeizhou Jan 17 at 21:58
feedback

2 Answers

Try adding a conn.commit() to your query

link|improve this answer
between the execute and fetchall, to be precise ;) – fileoffset Aug 31 '11 at 5:25
Will that be needed even if we are only reading from the database using pymssql?? – Urjit Aug 31 '11 at 21:53
>>> conn.commit() >>> >>> results = cursor.fetchall() Traceback (most recent call last): File "<stdin>", line 1, in ? File "/usr/lib64/python2.4/site-packages/pymssql.py", line 301, in fetchall raise OperationalError, "No data available." pymssql.OperationalError: No data available. fetchone() doesn't work either – Magd Sep 1 '11 at 5:37
feedback

Without sufficient information to reproduce the example, it's hard to say the specific problem you're having. However, here are a few guesses I have as for possible problems:

  1. Maybe your actual column name (presuming your example above was just a mock up) is too long. See: http://code.google.com/p/pymssql/wiki/FAQ (look for Column names get silently truncated to 30 characters. (1.x only) ) This is a common one to trip folks up because it SILENTLY fails!!
  2. If you are creating tables before querying into them, or other things that require commits, it can mess things up, even with autocommit turned on ( autocommit(1) ). See my answer to myself :) at pymssql ( python module ) unable to use temporary tables

Good luck!

Mike

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.