検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 532 for execute (0.030 sec.)
PHP の変数を、クエリで取得するカラムに関連づける 4035
« oci_connect oci_error » PHP Manual OCI8 関数 PHP の変数を、クエリで取得するカラムに関連づける ... カラムに関連づけます。 oci_define_by_name() は、 oci_execute() を実行する前にコールしなければなりません。 パラメ ... ータ statement oci_parse() で作成して oci_execute() で実行した有効な OCI8 ステートメント ID、 あるい ... oci_define_by_name ( $stid , 'CITY' , $city ); oci_execute ( $stid ); // フェッチするたびに、さきほど定義した ... by_name ( $stid , 'MyDescription' , $mydesc ); oci_execute ( $stid ); while ( oci_fetch ( $stid )) { echo "id ...
https://man.plustar.jp/php/function.oci-define-by-name.html - [similar]
指定したパラメータでプリペアドステートメントを作成するリクエストを 送信し、その... 4035
« pg_send_execute pg_send_query_params » PHP Manual PostgreSQL 関数 指定したパラメータでプリペア ... 注意 if (! pg_connection_busy ( $dbconn )) { pg_send_execute ( $dbconn , "my_query" , array( "Joe's Widgets" )) ... する if (! pg_connection_busy ( $dbconn )) { pg_send_execute ( $dbconn , "my_query" , array( "Clothes Clothes C ... nect() - 持続的な PostgreSQL 接続をオープンする pg_execute() - 指定したパラメータを用いてプリペアドステートメ ... 実行するリクエストを 送信し、その結果を待つ pg_send_execute() - 指定したパラメータでプリペアドステートメントを ...
https://man.plustar.jp/php/function.pg-send-prepare.html - [similar]
Execute one or more write operations 4035
« MongoDB\Driver\Manager::createClientEncryption MongoDB\Driver\Manager::executeCommand » PHP Ma ... nual MongoDB\Driver\Manager Execute one or more write operations MongoDB\Driver\Manage ... r::executeBulkWrite (mongodb >=1.0.0) MongoDB\Driver\Manager: ... :executeBulkWrite — Execute one or more write operations 説 ... 明 final public MongoDB\Driver\Manager::executeBulkWrite ( string $namespace , MongoDB\Driver\Bulk ...
https://man.plustar.jp/php/mongodb-driver-manager.executebulkwrite.html - [similar]
Schema のコンストラクタ 4035
« mysql_xdevapi\Schema Schema::createCollection » PHP Manual mysql_xdevapi\Schema Schema のコンス ... ession -> sql ( "DROP DATABASE IF EXISTS food" )-> execute (); $session -> sql ( "CREATE DATABASE food" )-> e ... EATE TABLE food.fruit(name text, rating text)" )-> execute (); $schema = $session -> getSchema ( "food" ); $s ...
https://man.plustar.jp/php/mysql-xdevapi-schema.construct.html - [similar]
Close BLOB/CLOB data 3996
« cubrid_is_instance cubrid_lob_export » PHP Manual CUBRID 関数 Close BLOB/CLOB data cubrid_lob_ ... ( "localhost" , 33000 , "demodb" , "dba" ); cubrid_execute ( $conn , "DROP TABLE if exists doc" ); cubrid_exe ... TE TABLE doc (id INT, doc_content CLOB)" ); cubrid_execute ( $conn , "INSERT INTO doc VALUES (5,'hello,cubrid ...
https://man.plustar.jp/php/function.cubrid-lob-close.html - [similar]
Read BLOB/CLOB data and send straight to browser 3996
« cubrid_lob_get cubrid_lob_size » PHP Manual CUBRID 関数 Read BLOB/CLOB data and send straight ... ( "localhost" , 33000 , "demodb" , "dba" ); cubrid_execute ( $conn , "DROP TABLE if exists doc" ); cubrid_exe ... TE TABLE doc (id INT, doc_content CLOB)" ); cubrid_execute ( $conn , "INSERT INTO doc VALUES (5,'hello,cubrid ...
https://man.plustar.jp/php/function.cubrid-lob-send.html - [similar]
Move the cursor of a lob object 3996
« cubrid_lob2_read cubrid_lob2_seek » PHP Manual CUBRID 関数 Move the cursor of a lob object cub ... calhost" , 33000 , "demodb" , "dba" , "" ); cubrid_execute ( $conn , "DROP TABLE if exists test_lob" ); cubri ... d_execute ( $conn , "CREATE TABLE test_lob (id INT, contents ... ' ); // or cubrid_lob2_bind($req, 2, $lob); cubrid_execute ( $req ); cubrid_lob2_close ( $lob ); $req = cubri ... d_execute ( $conn , "select * from test_lob" ); $row = cubri ...
https://man.plustar.jp/php/function.cubrid-lob2-seek64.html - [similar]
Roll back a transaction 3996
« cubrid_put cubrid_schema » PHP Manual CUBRID 関数 Roll back a transaction cubrid_rollback (PEC ... _identifier ): bool The cubrid_rollback() function executes rollback on the transaction pointed by conn_ident ... cubrid_set_autocommit ( $conn , false ); @ cubrid_execute ( $conn , "DROP TABLE publishers" ); $sql = <<<EOD ... e CHAR(2), country VARCHAR(15) ) EOD; if (! cubrid_execute ( $conn , $sql )) { printf ( "Error facility: %d\n ... , 5 , $country_list [ $i ]); if (!( $ret = cubrid_execute ( $req ))) { break; } } if (! $ret ) { cubrid_roll ...
https://man.plustar.jp/php/function.cubrid-rollback.html - [similar]
実行する SQL 文を準備する 3996
« db2_pconnect db2_primary_keys » PHP Manual IBM DB2 関数 実行する SQL 文を準備する db2_prepare ... 使用します。 入力パラメータの場合についてのみ、 db2_execute() に渡す配列で指定することも可能です。 アプリケーシ ... 画をデータベースサーバーが 最適化します。その後 db2_execute() でプリペアドステートメントを実行する際にはこの実 ... 備し、 入力値の配列を含む配列を順に処理しながら db2_execute() に値を渡します。 <?php $animals = array( array( ... { foreach ( $animals as $animal ) { $result = db2_execute ( $stmt , $animal ); } } ?> 参考 db2_bind_param() ...
https://man.plustar.jp/php/function.db2-prepare.html - [similar]
スキーマからコレクションを削除する 3996
« Schema::createCollection Schema::existsInDatabase » PHP Manual mysql_xdevapi\Schema スキーマか ... ession -> sql ( "DROP DATABASE IF EXISTS food" )-> execute (); $session -> sql ( "CREATE DATABASE food" )-> e ... EATE TABLE food.fruit(name text, rating text)" )-> execute (); $schema = $session -> getSchema ( "food" ); $s ...
https://man.plustar.jp/php/mysql-xdevapi-schema.dropcollection.html - [similar]