| 13450 | |
| 13451 | #endif |
| 13452 | int sqlite3_dbdata_init( |
| 13453 | sqlite3 *db, |
| 13454 | char **pzErrMsg, |
| 13455 | const sqlite3_api_routines *pApi |
| 13456 | ){ |
| 13457 | SQLITE_EXTENSION_INIT2(pApi); |
| 13458 | (void)pzErrMsg; |
| 13459 | return sqlite3DbdataRegister(db); |
| 13460 | } |
| 13461 | |
| 13462 | #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */ |
| 13463 |
no test coverage detected