検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 165 for stmt (0.073 sec.)
空の新規 LOB あるいは FILE ディスクリプタを初期化する 6599
« oci_new_cursor oci_num_fields » PHP Manual OCI8 関数 空の新規 LOB あるいは FILE ディスクリプタ ... い。) */ $conn = oci_connect ( $user , $password ); $stmt = oci_parse ( $conn , "select rowid from $table $w ... tor ( $conn , OCI_D_ROWID ); oci_define_by_name ( $stmt , "ROWID" , $rowid ); oci_execute ( $stmt ); while ... ( oci_fetch ( $stmt )) { $nrows = oci_num_rows ( $stmt ); $delete = oc ... oci_commit ( $conn ); } } $nrows = oci_num_rows ( $stmt ); echo " $nrows deleted...\n" ; oci_free_statemen ...
https://man.plustar.jp/php/function.oci-new-descriptor.html - [similar]
Cancels a statement 6576
« sqlsrv_begin_transaction sqlsrv_client_info » PHP Manual SQLSRV 関数 Cancels a statement sqlsr ... Cancels a statement 説明 sqlsrv_cancel ( resource $stmt ): bool Cancels a statement. Any results associate ... with the statement have been consumed. パラメータ stmt The statement resource to be cancelled. 戻り値 成功 ... , true )); } $sql = "SELECT Sales FROM Table_1" ; $stmt = sqlsrv_prepare ( $conn , $sql ); if( $stmt === f ... sqlsrv_errors (), true )); } if( sqlsrv_execute ( $stmt ) === false ) { die( print_r ( sqlsrv_errors (), t ...
https://man.plustar.jp/php/function.sqlsrv-cancel.html - [similar]
直近の SQL 文のエラーメッセージを含む文字列を返す 6530
« db2_stmt_error db2_table_privileges » PHP Manual IBM DB2 関数 直近の SQL 文のエラーメッセージを ... 含む文字列を返す db2_stmt_errormsg (PECL ibm_db2 >= 1.0.0) db2_stmt_errormsg ... QL 文のエラーメッセージを含む文字列を返す 説明 db2_stmt_errormsg ( resource $stmt = ? ): string 直近の SQL ... 文のエラーメッセージを含む文字列を返します。 db2_stmt_errormsg() の引数にステートメントリソースを 渡さな ... スに関連するエラーメッセージを返します。 パラメータ stmt 有効なステートメントリソース。 戻り値 SQL 文の発行 ...
https://man.plustar.jp/php/function.db2-stmt-errormsg.html - [similar]
結果セットポインタを次の行あるいは要求された行に設定する 6314
« db2_fetch_object db2_field_display_size » PHP Manual IBM DB2 関数 結果セットポインタを次の行あ ... 求された行に設定する 説明 db2_fetch_row ( resource $stmt , int $row_number = ? ): bool db2_fetch_row() を使 ... たうえで行の内容を配列として取得します。 パラメータ stmt 有効な stmt リソース。 row_number スクロール可能な ... LECT name, breed FROM animals WHERE weight < ?' ; $stmt = db2_prepare ( $conn , $sql ); db2_execute ( $stm ... t , array( 10 )); while ( db2_fetch_row ( $stmt )) { $name = db2_result ( $stmt , 0 ); $breed = db ...
https://man.plustar.jp/php/function.db2-fetch-row.html - [similar]
mysqli_stmt_execute のエイリアス 6292
« mysqli::escape_string mysqli_get_client_stats » PHP Manual エイリアスおよび非推奨の Mysqli 関数 ... mysqli_stmt_execute のエイリアス mysqli_execute (PHP 5, PHP 7, ... PHP 8) mysqli_execute — mysqli_stmt_execute() のエイリアス 説明 この関数は次の関数のエ ... イリアスです。 mysqli_stmt_execute() 注意 注意 : mysqli_execute() は非推奨で、 ... 廃止予定です。 参考 mysqli_stmt_execute() - プリペアドステートメントを実行する 関連 ...
https://man.plustar.jp/php/function.mysqli-execute.html - [similar]
Retrieves the number of fields (columns) on a statement 6292
« sqlsrv_next_result sqlsrv_num_rows » PHP Manual SQLSRV 関数 Retrieves the number of fields (co ... on a statement 説明 sqlsrv_num_fields ( resource $stmt ): mixed Retrieves the number of fields (columns) ... on a statement. パラメータ stmt The statement for which the number of fields is re ... s (), true )); } $sql = "SELECT * FROM Table_1" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === fal ... s (), true )); } $numFields = sqlsrv_num_fields ( $stmt ); while( sqlsrv_fetch ( $stmt )) { // Iterate thr ...
https://man.plustar.jp/php/function.sqlsrv-num-fields.html - [similar]
LOB ファイルから、ユーザーが定義したサイズの内容を取得する 6280
« db2_last_insert_id db2_next_result » PHP Manual IBM DB2 関数 LOB ファイルから、ユーザーが定義し ... サイズの内容を取得する 説明 db2_lob_read ( resource $stmt , int $colnum , int $length ): string db2_lob_read ... 指定したサイズの LOB データを取得します。 パラメータ stmt LOB データを含む有効な stmt リソース。 colnum stmt ... リソースの結果セット内の、有効なカラム番号。 length stmt リソースから取得する LOB データのサイズ。 戻り値 指 ... = db2_exec ( $conn , $create ); $variable = "" ; $stmt = db2_prepare ( $conn , "INSERT INTO clob_stream ( ...
https://man.plustar.jp/php/function.db2-lob-read.html - [similar]
CUBRID 関数 (PDO_CUBRID) 6280
« PDO ドライバ PDO_CUBRID DSN » PHP Manual PDO ドライバ CUBRID 関数 (PDO_CUBRID) CUBRID 関数 (PD ... <?php $fp = fopen ( 'lob_test.png' , 'rb' ); $sql_stmt = "INSERT INTO lob_test(name, content) VALUES('lob ... _test.png', ?)" ; $stmt = $dbh -> prepare ( $sql_stmt ); $ret = $stmt -> b ... indParam ( 1 , $fp , PDO :: PARAM_LOB ); $ret = $stmt -> execute (); ?> 例2 CUBRID PDO での LOB の取得 < ... ?php $sql_stmt = "SELECT content FROM lob_test WHERE name='lob_te ...
https://man.plustar.jp/php/ref.pdo-cubrid.html - [similar]
行を配列として返す 6257
« sqlsrv_execute sqlsrv_fetch_object » PHP Manual SQLSRV 関数 行を配列として返す sqlsrv_fetch_ar ... を配列として返す 説明 sqlsrv_fetch_array ( resource $stmt , int $fetchType = ? , int $row = ? , int $offset ... たはその両方(デフォルト)を選択できます。 パラメータ stmt sqlsrv_query あるいは sqlsrv_prepare が返すステート ... l = "SELECT FirstName, LastName FROM SomeTable" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === fal ... ), true ) ); } while( $row = sqlsrv_fetch_array ( $stmt , SQLSRV_FETCH_ASSOC ) ) { echo $row [ 'LastName' ...
https://man.plustar.jp/php/function.sqlsrv-fetch-array.html - [similar]
PHP 変数を SQL 文のパラメータにバインドする 6189
« db2_autocommit db2_client_info » PHP Manual IBM DB2 関数 PHP 変数を SQL 文のパラメータにバイン ... メータにバインドする 説明 db2_bind_param ( resource $stmt , int $parameter_number , string $variable_name , ... りなどの詳細を制御できるようになります。 パラメータ stmt db2_prepare() が返すプリペアドステートメント。 par ... = db2_connect ( $database , $user , $password ); $stmt = db2_prepare ( $conn , $sql ); // db2_bind_param( ... を宣言できます $lower_limit = 1 ; db2_bind_param ( $stmt , 1 , "lower_limit" , DB2_PARAM_IN ); db2_bind_par ...
https://man.plustar.jp/php/function.db2-bind-param.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT