Name

sqlite3_db_handle() — Get database connection from statement

Definition

sqlite3* sqlite3_db_handle( sqlite3_stmt* stmt );
stmt

A prepared statement.

Returns

The database connection associated with the provided statement.

Description

This function extracts the database connection associated with a prepared statement.

See Also

sqlite3_prepare_xxx()