"Dittmar, Daniel" <[EMAIL PROTECTED]> schrieb am 06.11.02 19:03:15: > There exists an experimental version of the Python interface that > is capable of returning the values of SERIAL (autoincrement) columns > to the application. This requires SAP DB 7.3.00.29. > ... > Those using the module sapdb should comment on it, > especially if the incompatibility is acceptable.
Hello Daniel, so the following: res = session.sql(sql) row = res.next() would have to be changed to: res = session.sql(sql) row = res.getResultSet().next() or is it still the default return value (for selects)? I need a little bit more time to check and test my code. The new features are sounding good (but too late for my latest project). Many regards, R�diger ________________________________________________________________ Keine verlorenen Lotto-Quittungen, keine vergessenen Gewinne mehr! Beim WEB.DE Lottoservice: http://tippen2.web.de/?x=13 _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
