** Internal check: Verify that the SQLite is uninitialized. Print a ** error message if it is initialized. */
| 26870 | ** error message if it is initialized. |
| 26871 | */ |
| 26872 | static void verify_uninitialized(void){ |
| 26873 | if( sqlite3_config(-1)==SQLITE_MISUSE ){ |
| 26874 | utf8_printf(stdout, "WARNING: attempt to configure SQLite after" |
| 26875 | " initialization.\n"); |
| 26876 | } |
| 26877 | } |
| 26878 | |
| 26879 | /* |
| 26880 | ** Initialize the state information in data |
no test coverage detected