execQueryImpl

Internal implementation for the exec and query functions.

Execute a one-off SQL command.

Use this method when you are not going to be using the same command repeatedly. It can be used with commands that don't produce a result set, or those that do. If there is a result set its existence will be indicated by the return value.

Any result set can be accessed vis Connection.getNextRow(), but you should really be using execSQLResult() or execSQLSequence() for such queries.

  1. bool execQueryImpl(Connection conn, ExecQueryImplInfo info, ulong ra)
  2. bool execQueryImpl(Connection conn, ExecQueryImplInfo info)
    package
    bool
    execQueryImpl

Return Value

Type: bool

true if there was a (possibly empty) result set.

Meta