SQLite3::exec Executes a result-less query against a given database &reftitle.description; public boolSQLite3::exec stringquery Executes a result-less query against a given database. SQLite3 may need to create temporary files during the execution of queries, so the respective directories may have to be writable. &reftitle.parameters; query The SQL query to execute (typically an INSERT, UPDATE, or DELETE query). &reftitle.returnvalues; Returns &true; if the query succeeded, &false; on failure. &reftitle.examples; <function>SQLite3::exec</function> example exec('CREATE TABLE bar (bar TEXT)'); ?> ]]>