Hello, As far as I can see I can run ad-hoc queries against my database in two ways:
myBizobj.executeSafe(sql, params) # What's the return value? A dataset? or, a little longer: crs = myBizobj.getTempCursor() crs.execute(sql, params) # Does that method return None? Or what? ds = crs.getDataSet() What's the difference, except the number of statements? In the mailing list archive I get only 4 hits searching for "executeSafe", all of them from 2007: does that mean the method is deprecated, unimportant, not the best choice in most cases, or what? Or everybody but me uses it without problems and without questions? Or is it only good for INSERT/UPDATE/DELETE, because no data can be got from it? Additional question: what's the return value from dBizobj.filter()? A dataset? Thank you, Sibylle _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
