Problem beim Abfragen von Teradata in Python / Pyodbc

Ich versuche, eine Teradata-Datenbank in Python mit PyODBC abzufragen. Die Verbindung zur Datenbank ist in Ordnung. Wenn ich jedoch versuche, das Ergebnis abzurufen, ist der Fehler "Ungültiges Literal für Dezimalzahl: u ''" aufgetreten. Hilfe bitte.

Ich bin auf RHEL6 mit Python 2.7.3

Hier ist der Code und das Ergebnis:

import pyodbc

sql = "select * from table"

pyodbc.pooling = False
cnx = pyodbc.connect("DRIVER={Teradata};DBCNAME=host;DATABASE=database;   AUTHENTICATION=LDAP;UID=user;PWD=password", autocommit=True, ANSI=True)
cursor = cnx.cursor()
rows = cursor.execute(sql).fetchone()
InvalidOperation                          Traceback (most recent call last)
<ipython-input-25-f2a0c81ca0e4> in <module>()
----> 1 test.fetchone()

/usr/local/lib/python2.7/decimal.pyc in __new__(cls, value, context)
    546                     context = getcontext()
    547                 return context._raise_error(ConversionSyntax,
--> 548                                 "Invalid literal for Decimal: %r" % value)
    549 
    550             if m.group('sign') == "-":

/usr/local/lib/python2.7/decimal.pyc in _raise_error(self, condition, explanation, *args)
   3864         # Errors should only be risked on copies of the context
   3865         # self._ignored_flags = []
-> 3866         raise error(explanation)
   3867 
   3868     def _ignore_all_flags(self):

InvalidOperation: Invalid literal for Decimal: u''

Antworten auf die Frage(4)

Ihre Antwort auf die Frage