normalized_sql method
Implementation
String normalized_sql(PtrStmt pStmt) {
if (libVersionNumber < 3026000) {
throw dbsql.DatabaseException('API sqlite3_normalized_sql is not available before 3.26.0');
}
if (_h_sqlite3_normalized_sql! == null) {
throw dbsql.DatabaseException(
'API sqlite3_normalized_sql is not available, You need to enable it during library build.');
}
var result = _h_sqlite3_normalized_sql!(pStmt);
return result.toDartString();
}