select method

Future<RespType> select(
  1. int index
)

Implementation

Future<RespType> select(int index) async {
  return tier0.execute([
    'SELECT',
    index,
  ]);
}