> 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)?
No, SELECTs will return a SapDB_ResultSet. If a stored procedure call returns both a result set and output parameters, then the method call will return a SapDB_Result which can be asked for both of these values. (I know that you found that out yourself, but I put it here in case someone else wonders). Daniel Dittmar -- Daniel Dittmar SAP DB, SAP Labs Berlin [EMAIL PROTECTED] http://www.sapdb.org/ _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
