473,794 Members | 2,804 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

pymssql query

Hi,

I'm trying to use pymssql to execute a stored procedure. Currently, I
have an Excel spreadsheet that uses VBA in this manner:

Private Function CreateNewParrot (connDb As ADODB.Connectio n) As Long
Dim objCommand As ADODB.Command
Dim iParrot As Long
Dim bSuccess As Boolean

Set objCommand = CreateObject("A DODB.Command")
objCommand.Acti veConnection = connDb
objCommand.Comm andText = "create_new "
objCommand.Comm andType = adCmdStoredProc
objCommand.Para meters.Refresh
On Error Resume Next
Err.Clear
objCommand.Exec ute
bSuccess = (Err.Number = 0)
On Error GoTo 0
If (bSuccess) Then
If (IsNull(objComm and("@parrot")) ) Then
iParrot = 0
Else
iParrot = CLng(objCommand ("@parrot"))
End If
Else
iParrot = 0
End If
Set objCommand = Nothing
CreateNewParrot = iParrot
End Function

My attempts to translate this into a python script using pymssql have
so far been fruitless. Here is what I have tried:
>>import pymssql
con = pymssql.connect (host='blah', user='blah', password='blah' , database='blah' )
cur = con.cursor()
command = 'exec create_new_parr ot'
cur.execute(c ommand, '@parrot')
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "C:\Program Files\Python\li b\site-packages\pymssq l.py", line
127, in execute
self.executeman y(operation, (params,))
File "C:\Program Files\Python\li b\site-packages\pymssq l.py", line
153, in executemany
raise DatabaseError, "internal error: %s" % self.__source.e rrmsg()
pymssql.Databas eError: internal error: SQL Server message 8114,
severity 16, state 5, procedure create_new_parr ot, line 0:
Error converting data type nvarchar to int.
DB-Lib error message 10007, severity 5:
General SQL Server error: Check messages from the SQL Server.

Any ideas?

Thanks.

<M>

May 16 '07 #1
1 6714
m.***********@g mail.com wrote:
Hi,

I'm trying to use pymssql to execute a stored procedure. Currently, I
have an Excel spreadsheet that uses VBA in this manner:

Private Function CreateNewParrot (connDb As ADODB.Connectio n) As Long
Dim objCommand As ADODB.Command
Dim iParrot As Long
Dim bSuccess As Boolean

Set objCommand = CreateObject("A DODB.Command")
objCommand.Acti veConnection = connDb
objCommand.Comm andText = "create_new "
objCommand.Comm andType = adCmdStoredProc
objCommand.Para meters.Refresh
On Error Resume Next
Err.Clear
objCommand.Exec ute
bSuccess = (Err.Number = 0)
On Error GoTo 0
If (bSuccess) Then
If (IsNull(objComm and("@parrot")) ) Then
iParrot = 0
Else
iParrot = CLng(objCommand ("@parrot"))
End If
Else
iParrot = 0
End If
Set objCommand = Nothing
CreateNewParrot = iParrot
End Function
Depending on what you're after, why not transliterate
it into Python?

import win32com.client
command = win32com.client .Dispatch ("ADODB.Command ")

etc.
My attempts to translate this into a python script using pymssql have
so far been fruitless. Here is what I have tried:
>>>import pymssql
con = pymssql.connect (host='blah', user='blah', password='blah' , database='blah' )
cur = con.cursor()
command = 'exec create_new_parr ot'
cur.execute( command, '@parrot')
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "C:\Program Files\Python\li b\site-packages\pymssq l.py", line
127, in execute
self.executeman y(operation, (params,))
File "C:\Program Files\Python\li b\site-packages\pymssq l.py", line
153, in executemany
raise DatabaseError, "internal error: %s" % self.__source.e rrmsg()
pymssql.Databas eError: internal error: SQL Server message 8114,
severity 16, state 5, procedure create_new_parr ot, line 0:
Error converting data type nvarchar to int.
DB-Lib error message 10007, severity 5:
General SQL Server error: Check messages from the SQL Server.
Well, I'm not connected to a SQL Server here (so this
is untested) but I don't believe pymssql handles
stored procedure calls differently from any other
SQL. Which is a problem here because, as far as I
can make out from your code above, @parrot is an
output parameter for the create_new stored proc.
Is that right? If it's an input-only param, then
just do the usual:

import pymssql
db = pymssql.connect (...)
q = db.cursor ()
q.execute (
"EXECUTE create_new @parrot = %s",
["parrot-thing"]
)

I'm not aware of any of the MSSQL dbapi
modules which allow for output parameters
in stored procedures. pyodbc (one of the most
recent entrants) tantalisingly offers a .callproc
but then comments "not yet supported". If the ADO
approach works, I'd use that if I were you!

TJG
May 16 '07 #2

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

Similar topics

0
1531
by: Khawaja Shahzad Sadiq Butt | last post by:
Hi, I am trying to connect to sql server 2000 on win xp. I am using a python extension called. pymssql but it is giving me this errror: Traceback (most recent call last): File "C:\Python22\Lib\site-packages\Pythonwin\pywin\framework\scriptutils.py", line 310, in RunScript exec codeObject in __main__.__dict__ File "C:\syndication\db_1.py", line 3, in ?
0
1486
by: Josh Close | last post by:
I'm getting an error from pymssql when trying to execute a stored procedure: Operating-system Error - OpenClient I can't figure out why this is happening. It's probably a freetds problem (like usual) but if any one knows, it would be helpful. This is all that's done: sql = 'spName;'
0
1564
by: saqib | last post by:
I have a query that is running on a mssql DB that takes about 15 minutes when run "directly"; IE: thru MS SQL Query Analyzer. I know, it sucks. I'm trying to fix it. But in the meantime, I have a python process which connects to the DB using pymssql. This process runs the aformentioned query... but fails because the query times out after approx 30 seconds. Is there anyway to change/set the timeout setting on a pymssql DB connection?? I...
1
2850
by: morris carre | last post by:
I have a strange problem : some code that fetches queries from an mssql database works fine under Idle but the very same code run from a shell window obtains its strings garbled as if the encoding codepage was modified. This occurs only when using pymssql to connect; if I connect through odbc (using the odbc module included in pywin) this problem vanishes. I briefly thought sys.getdefaultencoding() would pin it down but the value is...
1
5514
by: eight02645999 | last post by:
hi i am using pymmsql to query a date column in MSSQL database table. However the result shows for example (datetime.datetime(2006, 2, 16, 17, 50, 19) which is supposed to be 2006-02-16 17:50:19.000 anyway to correct query a date column using pymssql so that it gives the correct date format? thanks
3
6214
by: rc | last post by:
How to insert NULL values in to int field using params. I'm trying to use pymssql.execute, passing the operation and list of params. One of the values in the params is a NULL value going to int field. The pymssql._quote() puts ' around the NULL which causes an exception to be thrown, is there a way to use the params for this or do I need to build the insert string myself? pymssql.DatabaseError: internal error: SQL Server message 245,...
1
2995
by: James Su | last post by:
I tried to use pymssql to access MSSQL 2000, with a table, I store Chinese Character in NVarchar field, Chinese Character display normally when I query them by MS SQL Query Analyzer under Windows or by unixODBC under Ubuntu. But when I query those data by pymssql or pyodbc, all Chinese Character display ??? instead. Does anyone has some advice or thread? Thanks.
7
6690
by: ChaosKCW | last post by:
Hi I am trying to use pymssql, and have an issue where by the execute (not the fetch) is appearing to load all records into memory. if I execute con = pymssql.connect(...) cur = con.cursor() cur.execute(sql)
0
1432
by: Aspersieman | last post by:
On Tue, 21 Oct 2008 20:44:24 +0200, Mike Hansen <projecktzero@yahoo.com> wrote: Hi there I hope you don't mind - I made this a new thread on the list, so others can maybe help out. Although I use Linux quite often, I'm afraid MS SQL (with python) from
0
9519
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10213
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10163
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6779
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5436
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3721
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.