SQLite3::execExecutes a result-less query against a given database
&reftitle.description;
publicboolSQLite3::execstringquery
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;
SQLite3::exec example
exec('CREATE TABLE bar (bar TEXT)');
?>
]]>