Returns a result set object using the specified prepared statement or statement object.
Syntax
execute( preparedstatement )
preparedstatement.execute( )
execute( statement , sql )
statement.execute( sql )
Parameters
preparedstatement
|
the prepared statement object to use.
|
statement
|
the statement object to use.
|
sql
|
the SQL statement to execute.
|
Returns
boolean
|
true if the result is a result set object.
false if the result is an update count or there are no more results.
|
Example
if stmt.execute( "select * from names" ) then
break
end
|