-
I don't think that this is a bug in InformixDB. From the error output, it seems that your system is not configured correctly for compiling ESQL/C code. Please make sure that you have a working ESQL/C compiler set up before attempting to compile InformixDB. If you need help troubleshooting this, please contact me directly.
Thanks,
Carsten.
2009-07-03 12:11:49 UTC by chaese
-
I'm trying to compile it on AIX 5.2 and it doesn't compile... This is the output:
> python setup.py build_ext
running build_ext
/usr/informix/bin/esql -EDHAVE_ESQL9 -e _informixdb.ec
building '_informixdb' extension
creating build
creating build/temp.aix-5.2-2.5
creating build/temp.aix-5.2-2.5/ext
xlc_r -DNDEBUG -O -DPYTHON_INCLUDE=/usr/local/include/python2.5 -DHAVE_C_DATETIME=1...
2009-07-03 11:11:06 UTC by nobody
-
Thanks for the feedback. I will make the adjustments.
2009-06-29 22:04:13 UTC by octopusgrabbus
-
Python's DB-API specs dictate that connections operate in a transaction by default. You need to explicitly commit the change by calling conn.commit(), or open the connection in autocommit mode. You're doing neither, so the update is implicitly rolled back when the script exits.
By the way, you're not closing the cursor. "cur.close" just looks up the close method without calling it. You need...
2009-06-29 17:08:46 UTC by chaese
-
I have a simple update of a one row table. It works in Perl and 4GL, but not this example. I am wondering what might be wrong with how I have structured the example.
2009-06-29 16:17:18 UTC by octopusgrabbus
-
chaese committed revision 186 to the InformixDB SVN repository, changing 6 files.
2008-09-28 02:48:41 UTC by chaese
-
chaese committed revision 185 to the InformixDB SVN repository, changing 1 files.
2008-09-28 02:45:11 UTC by chaese
-
chaese committed revision 184 to the InformixDB SVN repository, changing 1 files.
2008-09-26 04:57:59 UTC by chaese
-
chaese committed revision 183 to the InformixDB SVN repository, changing 1 files.
2008-09-26 04:50:13 UTC by chaese
-
chaese committed revision 182 to the InformixDB SVN repository, changing 1 files.
2008-09-26 02:07:03 UTC by chaese