![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
|||||||||||
sqlite_exec(PHP 5) sqlite_exec(no version information, might be only in CVS) SQLiteDatabase->exec -- Executes a result-less query against a given databaseDescriptionbool sqlite_exec ( resource dbhandle, string query )bool sqlite_exec ( string query, resource dbhandle ) Object oriented style (method): class SQLiteDatabase {bool exec ( string query ) } Executes an SQL statement given by the query against a given database handle (specified by the dbhandle parameter).
Parameters
Return ValuesThis function will return a boolean result; TRUE for success or FALSE for failure. If you need to run a query that returns rows, see sqlite_query(). The column names returned by SQLITE_ASSOC and SQLITE_BOTH will be case-folded according to the value of the sqlite.assoc_case configuration option. Copyright © 1997 - 2007 by the PHP Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later. A copy of the Open Publication License is distributed with this manual, the latest version is presently available at http://www.opencontent.org/openpub/. Please see full copyright text at http://www.php.net/manual/en/copyright.php Original version of the above documentation is available at http://www.php.net/manual/en/ |
|