columnText method

String columnText(
  1. int index
)

Calls sqlite3_column_text with the given index.

Note that this performs no bounds check against columnCount in Dart.

Implementation

String columnText(int index) {
  return rawStatement.sqlite3_column_text(index);
}