Mike
what about more flexible idea - using separate statement and bindings? local stmt = conn:statement( "SELECT a, b, c FROM t WHERE d > $d AND e = $e" ) local rs, count = stmt:selectResultSet( { d=1; e="abc" } )
what about more flexible idea - using separate statement and bindings?
local stmt = conn:statement( "SELECT a, b, c FROM t WHERE d > $d AND e = $e" ) local rs, count = stmt:selectResultSet( { d=1; e="abc" } )