sqlStateString property

String get sqlStateString

Gets the SQLSTATE code as a string.

Converts the byte list to a 5-character string (e.g., '42S02').

Implementation

String get sqlStateString {
  return String.fromCharCodes(sqlState);
}