select method

Future<ResultSet> select(
  1. String sql, [
  2. List<Object?> parameters = const []
])

Prepares the sql select statement and runs it with the provided parameters.

Implementation

Future<ResultSet> select(String sql,
    [List<Object?> parameters = const []]) async {
  return await sendCommand("select", body: FStatementParams(sql, parameters));
}