Alias PreparedImpl.queryResult

Execute a prepared SQL command for the case where you expect a result set, and want it all at once.

Use this method when you will use the same command repeatedly. This method will throw if the SQL command does not produce a result set.

If there are long data items among the expected result columns you can specify that they are to be subject to chunked transfer via a delegate.

Declaration

struct PreparedImpl
{
  // ...
  alias deprecated queryResult;
  // ...
}

Parameters

NameDescription
csa An optional array of ColumnSpecialization structs.

Returns

A (possibly empty) ResultSet.

Authors

Copyright

License