検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 184 for Statement (0.009 sec.)
Oracle Database の暗黙の結果セットを持つ親ステートメント・リソースから次の子ステ... 6028
« oci_free_statement oci_lob_copy » PHP Manual OCI8 関数 Oracle Database の暗黙の結果セットを持つ ... スを返す 説明 oci_get_implicit_resultset ( resource $statement ): resource | false ストアドまたは匿名の Oracle PL ... により明示的に設定することができます。 パラメータ statement oci_parse() により作成され、 oci_execute() により実 ... いるかもしれませんし、 いないかもしれません。 戻り値 statement 上で使用可能な 次の子ステートメントに対する文ハンド ... 新規の暗黙の結果セット: // CN // CH // IN oci_free_statement ( $stid ); oci_close ( $conn ); ?> 例2 子ステートメ ...
https://man.plustar.jp/php/function.oci-get-implicit-resultset.html - [similar]
Escape special characters in a string for use in an SQL statement 5951
« cubrid_query cubrid_result » PHP Manual CUBRID MySQL 互換関数 Escape special characters in a s ... tring for use in an SQL statement cubrid_real_escape_string (PECL CUBRID >= 8.3.0) c ... e special characters in a string for use in an SQL statement 説明 cubrid_real_escape_string ( string $unescaped ... f ansi_quotes, which is a parameter related to SQL statement. If the ansi_quotes value is set to no, character ...
https://man.plustar.jp/php/function.cubrid-real-escape-string.html - [similar]
ある文における結果のカラム数を返す 5951
« oci_new_descriptor oci_num_rows » PHP Manual OCI8 関数 ある文における結果のカラム数を返す oci_ ... 結果のカラム数を返す 説明 oci_num_fields ( resource $statement ): int 指定した文 statement におけるカラムの数を返 ... します。 パラメータ statement 有効な OCI ステートメント ID。 戻り値 カラムの数を ... // 出力は // ID NUMBER // QUANTITY NUMBER oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP ...
https://man.plustar.jp/php/function.oci-num-fields.html - [similar]
CUBRID 5907
« ベンダー固有のモジュール はじめに » PHP Manual ベンダー固有のモジュール CUBRID CUBRID はじめに ... ID 関数 cubrid_bind — Bind variables to a prepared statement as parameters cubrid_close_prepare — Close the req ... ction call cubrid_execute — Execute a prepared SQL statement cubrid_fetch — Fetch the next row from a result se ... b object or a string as a lob object to a prepared statement as parameters cubrid_lob2_close — Close LOB object ... t result of next query when executing multiple SQL statements cubrid_num_cols — Return the number of columns in ...
https://man.plustar.jp/php/book.cubrid.html - [similar]
Bind a lob object or a string as a lob object to a prepared statement as paramet... 5907
« cubrid_lob_size cubrid_lob2_close » PHP Manual CUBRID 関数 Bind a lob object or a string as a ... lob object to a prepared statement as parameters cubrid_lob2_bind (PECL CUBRID >= 8.4 ... b object or a string as a lob object to a prepared statement as parameters 説明 cubrid_lob2_bind ( resource $re ... corresponding question mark placeholder in the SQL statement that was passed to cubrid_prepare() . If bind_valu ...
https://man.plustar.jp/php/function.cubrid-lob2-bind.html - [similar]
クエリの次の行を内部バッファに取得する 5874
« oci_fetch_row oci_field_is_null » PHP Manual OCI8 関数 クエリの次の行を内部バッファに取得する ... を内部バッファに取得する 説明 oci_fetch ( resource $statement ): bool クエリの次の行を内部バッファに取得します。 ... 情報は oci_fetch_array() を参照ください。 パラメータ statement oci_parse() で作成して oci_execute() で実行した有効 ... ステートメント ID。 戻り値 成功した場合に true 、 statement にもう行がない場合に false を返します。 例 例1 oci ... 000 is Roma // Location id 1100 is Venice oci_free_statement ( $stid ); oci_close ( $conn ); ?> 例2 oci_fetch() ...
https://man.plustar.jp/php/function.oci-fetch.html - [similar]
フェッチしたフィールドが null であるかどうかを確認する 5874
« oci_fetch oci_field_name » PHP Manual OCI8 関数 フェッチしたフィールドが null であるかどうかを ... どうかを確認する 説明 oci_field_is_null ( resource $statement , string | int $column ): bool statement の現在の行 ... lumn が null であるかどうかを調べます。 パラメータ statement 有効な OCI ステートメント ID。 column (1 から始まる ... } // 出力は // bool(false) // bool(true) oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP ...
https://man.plustar.jp/php/function.oci-field-is-null.html - [similar]
クエリの次の行をオブジェクトとして返す 5830
« oci_fetch_assoc oci_fetch_row » PHP Manual OCI8 関数 クエリの次の行をオブジェクトとして返す oc ... ジェクトとして返す 説明 oci_fetch_object ( resource $statement , int $mode = OCI_ASSOC | OCI_RETURN_NULLS ): stdC ... が サポートするデータ型 を参照ください。 パラメータ statement oci_parse() で作成して oci_execute() で実行した有効 ... ブジェクトの属性は文中のフィールドと一致しています。 statement にもう行がない場合は false を返します。 LOB カラム ... ; } // 出力です。 // 1 // Fish and Chips oci_free_statement ( $stid ); oci_close ( $conn ); ?> 例2 文字の大小を ...
https://man.plustar.jp/php/function.oci-fetch-object.html - [similar]
指定したステートメントのパラメータ数を返す 5830
« mysqli_stmt::$num_rows mysqli_stmt::prepare » PHP Manual mysqli_stmt 指定したステートメントのパ ... ; 手続き型 mysqli_stmt_param_count ( mysqli_stmt $statement ): int プリペアドステートメント内のパラメータマーカ ... ?" )) { $marker = $stmt -> param_count ; printf ( "Statement has %d markers.\n" , $marker ); /* ステートメントを ... ker = mysqli_stmt_param_count ( $stmt ); printf ( "Statement has %d markers.\n" , $marker ); /* ステートメントを ... close ( $link ); ?> 上の例の出力は以下となります。 Statement has 2 markers. 参考 mysqli_prepare() - 実行するため ...
https://man.plustar.jp/php/mysqli-stmt.param-count.html - [similar]
Return the number of columns in the result set 5797
« cubrid_next_result cubrid_num_rows » PHP Manual CUBRID 関数 Return the number of columns in th ... n only be used when the query executed is a SELECT statement. パラメータ result Result. 戻り値 Number of column ... s, when process is successful. false , if SQL statement is not SELECT. 例 例1 cubrid_num_cols() example <? ... : 2 参考 cubrid_execute() - Execute a prepared SQL statement cubrid_num_rows() - Get the number of rows in the ...
https://man.plustar.jp/php/function.cubrid-num-cols.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT