tableName property

String tableName

The table's name.

The table name must be non-empty, consist only of alphanumeric characters and underscores, and cannot start with a number or an underscore.

Implementation

String get tableName {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TableDescription_getTableName(
        _handle, errorHandler);
  });
  return stringHandle.toDartString();
}
void tableName=(String value)

Implementation

set tableName(String value) {
  final coreValue = _CString(value);
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_TableDescription_setTableName(
        _handle, coreValue.bytes, errorHandler);
  });
}