Name

sqlite3_initialize() — Initialize the SQLite library

Definition

int sqlite3_initialize( );
Returns

An SQLite result code.

Description

This function initializes the SQLite library. It can be safely called multiple times. Many standard SQLite functions, such as sqlite3_open(), will automatically call sqlite3_initialize() if it was not explicitly called by the application. The SQLite library can be safely initialized and shut down repeatedly.

See Also

sqlite3_open(), sqlite3_shutdown()