17 lines
344 B
Plaintext
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());
|
|
```
|