select method
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));
}