stmt_readonly method
Implementation
int stmt_readonly(PtrStmt pStmt) {
if (libVersionNumber < 3007004) {
throw dbsql.DatabaseException('API sqlite3_stmt_readonly is not available before 3.7.4');
}
return _h_sqlite3_stmt_readonly!(pStmt);
}