Open GoogleCodeExporter opened 9 years ago
Here's a link to the freetds list thread I created
http://lists.ibiblio.org/pipermail/freetds/2010q2/026123.html
Original comment by nosklo@gmail.com
on 29 Jun 2010 at 7:04
Some extra information:
a) Everything works fine if I change TDS Version to 4.2 (however,
version report from sql server is wrong -- using TDS version 4.2 I get
'95.08.0255' instead of the real version '08.00.0760').
b) Everything works fine for the other two types of functions ->
functions that return a value and functions that are just a SELECT
query (like a view) both work fine. You can even define a new function
that returns the result of a query on the other (broken) function, and
this way everything will work, **even when doing native binds on the
parameters**. For example: CREATE FUNCTION fn_tempFunc(@testparam
varchar(4)) RETURNS TABLE AS RETURN (SELECT * FROM
fn_FuncTest(@testparam))
c) Connection gets very unstable after this error, you can't recover.
d) The error happens when trying to bind any type of data.
Original comment by nosklo@gmail.com
on 29 Jun 2010 at 7:05
This runs fine on Windows, so I'm really suspecting FreeTDS. (I get a lot of
FreeTDS related issues, so I am going to see if I can setup a set of shared
tests with their development group.)
Can you provide an ODBC trace of the failure, and I'll compare it with what I
see on Windows?
Original comment by mkleehammer
on 21 Nov 2010 at 6:14
this run fine on my computer
ubuntu 10.10
freetds 0.82
unixodbc 2.2.14
python 2.6.6
sql server 2000
>>> con = pyodbc.connect('DSN=PacsDB;UID=dev;PWD=dev')
>>> cur = con.cursor()
>>> cur.execute('''
CREATE FUNCTION fn_FuncTest (@testparam varchar(4))
RETURNS @retTest TABLE (param varchar(4))
AS
BEGIN
INSERT @retTest
SELECT @testparam
RETURN
END''')
<pyodbc.Cursor object at 0xb61dcfa8>
>>> con.commit()
>>> cur.execute('select * from fn_FuncTest(?)',('test',))
<pyodbc.Cursor object at 0xb61dcfa8>
>>> cur.fetchone()[0]
'test'
>>>
Original comment by septem...@gmail.com
on 20 Apr 2011 at 6:12
Original issue reported on code.google.com by
nosklo@gmail.com
on 28 Jun 2010 at 1:07