PHP Function List
pdo-exec doesn't exist. Closest matches:
- exec
- db2_exec
- ftp_exec
- pdoexception
- odbc_exec
- hexdec
- pcntl_exec
- ociexecute
- pg_execute
- pdo
- apc_dec
- domtext
- db2_execute
- oci_execute
- pg_send_execute
- pdf_rect
- posix_getcwd
- odbc_execute
- ovrimos_exec
- gmp_divexact
Site Search Results
-
PDO::exec() executes an SQL statement in a single function call, returning the number of rows affected by the statement. PDO::exec() does not return results from a SELECT statement. For a SELECT statement that you only need to issue once during ...
-
PDO::exec() は、一度の関数コールで SQL 文を実行し、文によって作用した行数を返します。 PDO::exec() は SELECT 文からは結果を返しません。 プログラム中で一度だけ発行が必要になる SELECT 文 ...
-
It uses PHP 5.3.0's __callStatic functionality to pass on statically called methods to PDO. This means you can just call it statically from anywhere without having to initiate or define the object. Usage examples: <?php DB:: exec ("DELETE FROM Blah");
-
PDO::exec() exécute une requête SQL dans un appel d'une seule fonction, retourne le nombre de lignes affectées par la requête. PDO::exec() ne retourne pas de résultat pour une requête SELECT.
-
$db = new pdo ( 'sqlite::memory:' ); $db-> exec ( 'CREATE TABLE data (binary BLOB(512));' ); // generate plenty of troublesome, binary data for( $i = 0; $i < $num_values; $i ++ ) { for( $val = null, $c = 0; $c < 512 / 16; $c++ )
-
* PDO->errorInfo — Fetch extended error information associated with the last operation on the database handle * PDO->exec — Execute an SQL statement and return the number of affected rows * PDO->getAttribute — Retrieve a database connection ...
-
PDO::query() executes an SQL statement in a single function call, returning the result set (if any) returned by the ... PDO::exec() - Execute an SQL statement and return the number of affected rows PDO::prepare() - Prepares a statement for execution and ...
-
Some PDO drivers return a larger array. For example, the SQL Server driver returns 5 values. For example: <?php $numRows = $db-> exec ("DELETE FROM [TableName] WHERE ID between 6 and 17"); print_r ($db-> errorInfo());
-
$result = $this-> db-> getConnection ()-> exec ($sql); ?> This will run fine but PDO will balk with the 'unbuffered' error if you follow this with another query. Instead do: <?php $sql = <<<____SQL CREATE TABLE IF NOT EXISTS `ticket_hist` (
-
For example, PDO_PGSQL() requires you to specify the name of a sequence object for the name parameter. ... // Yup, your eyes are ok, NOT exec but query!!! $objSth = $objDb-> query ($strQuery); $mixRc = (is_object ($objSth) and $objSth ...

Other forms of search
To search the string "pdo-exec" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
