Closed GoogleCodeExporter closed 9 years ago
This is the current limitation of ibm_db driver due to lack of C API of
python's Decimal object, but you will get decimal object through ibm_db_dbi
wrapper.
eg.
import ibm_db, ibm_db_dbi
conn = ibm_db.connect('conn_str', '', '')
dbi_conn = ibm_db_dbi.Connection(conn)
cur = dbi_conn.cursor()
cur.execute('select statement')
row = cur.fetchone()
Original comment by rahul.pr...@in.ibm.com
on 8 May 2013 at 12:09
OK thanks
Original comment by zisisk...@gmail.com
on 8 May 2013 at 12:27
Original comment by rahul.pr...@in.ibm.com
on 17 Jun 2013 at 6:26
Original issue reported on code.google.com by
zisisk...@gmail.com
on 7 May 2013 at 12:57