uce/site/doc/pages/2_SQLite_error.txt
2026-06-15 21:42:50 +00:00

17 lines
344 B
Plaintext

:sig
String SQLite::error()
:params
return value : current statement/connection error text, or an empty string
:see
0_SQLite
:content
Returns stored statement information when present; otherwise returns SQLite's current connection error message when connected.
```cpp
DValue rows = db.query("select * from missing");
print(db.error());
```