検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 165 for stmt (0.015 sec.)
指定されたステートメントリソースに関連付けられたリソースを開放する 6098
« db2_free_result db2_get_option » PHP Manual IBM DB2 関数 指定されたステートメントリソースに関連 ... 付けられたリソースを開放する db2_free_stmt (PECL ibm_db2 >= 1.0.0) db2_free_stmt — 指定された ... ースに関連付けられたリソースを開放する 説明 db2_free_stmt ( resource $stmt ): bool ステートメントリソースに関 ... に暗黙的に開放されますが、 スクリプトの終了前に db2_stmt_result() をコールすることで、明示的にステートメント ... リソースを開放することができます。 パラメータ stmt 有効なステートメントリソース。 戻り値 成功した場合 ...
https://man.plustar.jp/php/function.db2-free-stmt.html - [similar]
Indicates whether the specified statement has rows 5996
« sqlsrv_get_field sqlsrv_next_result » PHP Manual SQLSRV 関数 Indicates whether the specified s ... tatement has rows 説明 sqlsrv_has_rows ( resource $stmt ): bool Indicates whether the specified statement ... has rows. パラメータ stmt A statement resource returned by sqlsrv_query() or ... n = sqlsrv_connect ( $server , $connectionInfo ); $stmt = sqlsrv_query ( $conn , "SELECT * FROM Table_1" ) ... ; if ( $stmt ) { $rows = sqlsrv_has_rows ( $stmt ); if ( $rows ...
https://man.plustar.jp/php/function.sqlsrv-has-rows.html - [similar]
結果セットの行からひとつのカラムを返す 5927
« db2_procedures db2_rollback » PHP Manual IBM DB2 関数 結果セットの行からひとつのカラムを返す d ... からひとつのカラムを返す 説明 db2_result ( resource $stmt , mixed $column ): mixed db2_result() を使用して、 ... etch_row() をコールする必要があります。 パラメータ stmt 有効な stmt リソース。 column 結果セット内のカラム ... 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-result.html - [similar]
Gets field data from the currently selected row 5859
« sqlsrv_get_config sqlsrv_has_rows » PHP Manual SQLSRV 関数 Gets field data from the currently ... tly selected row 説明 sqlsrv_get_field ( resource $stmt , int $fieldIndex , int $getAsType = ? ): mixed Ge ... sed in order. Field indices start at 0. パラメータ stmt A statement resource returned by sqlsrv_query() or ... CT Name, Comment FROM Table_1 WHERE ReviewID=1" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === fal ... ult set available for reading. if( sqlsrv_fetch ( $stmt ) === false ) { die( print_r ( sqlsrv_errors (), t ...
https://man.plustar.jp/php/function.sqlsrv-get-field.html - [similar]
Makes the next row in a result set available for reading 5825
« sqlsrv_fetch_object sqlsrv_field_metadata » PHP Manual SQLSRV 関数 Makes the next row in a res ... vailable for reading 説明 sqlsrv_fetch ( resource $stmt , int $row = ? , int $offset = ? ): mixed Makes th ... _field() to read the fields of the row. パラメータ stmt A statement resource created by executing sqlsrv_q ... CT Name, Comment FROM Table_1 WHERE ReviewID=1" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === fal ... ult set available for reading. if( sqlsrv_fetch ( $stmt ) === false ) { die( print_r ( sqlsrv_errors (), t ...
https://man.plustar.jp/php/function.sqlsrv-fetch.html - [similar]
カーソルを閉じてステートメントを再実行できるようにする 5780
« PDOStatement::bindValue PDOStatement::columnCount » PHP Manual PDOStatement カーソルを閉じてス ... ドを書くことと意味的に等価です。 <?php do { while ( $stmt -> fetch ()) ; if (! $stmt -> nextRowset ()) break ... or() の例 以下の例では、PDOStatement オブジェクト $stmt は複数の行を返しますが、このアプリケーションは先頭 ... イバで動作するよう、 PDOStatement オブジェクト $otherStmt を実行する前に $stmt に対して PDOStatement::closeC ... 。 <?php /* PDOStatement オブジェクトを生成する */ $stmt = $dbh -> prepare ( 'SELECT foo FROM bar' ); /* 第 ...
https://man.plustar.jp/php/pdostatement.closecursor.html - [similar]
Retrieves metadata for the fields of a statement prepared by sqlsrv_prepare or s... 5757
« sqlsrv_fetch sqlsrv_free_stmt » PHP Manual SQLSRV 関数 Retrieves metadata for the fields of a ... srv_query() 説明 sqlsrv_field_metadata ( resource $stmt ): mixed Retrieves metadata for the fields of a st ... nt before or after statement execution. パラメータ stmt The statement resource for which metadata is retur ... s (), true )); } $sql = "SELECT * FROM Table_1" ; $stmt = sqlsrv_prepare ( $conn , $sql ); foreach( sqlsrv ... _field_metadata ( $stmt ) as $fieldMetadata ) { foreach( $fieldMetadata as ...
https://man.plustar.jp/php/function.sqlsrv-field-metadata.html - [similar]
Makes the next result of the specified statement active 5688
« sqlsrv_has_rows sqlsrv_num_fields » PHP Manual SQLSRV 関数 Makes the next result of the specif ... atement active 説明 sqlsrv_next_result ( resource $stmt ): mixed Makes the next result of the specified st ... ets, row counts, and output parameters. パラメータ stmt The statement on which the next result is being ca ... M TABLE_1;" ; $params = array( 1 , "some data" ); $stmt = sqlsrv_query ( $conn , $query , $params ); // Co ... . echo "Rows affected: " . sqlsrv_rows_affected ( $stmt ). "<br />" ; // Move to the next result and displ ...
https://man.plustar.jp/php/function.sqlsrv-next-result.html - [similar]
Executes a statement prepared with sqlsrv_prepare 5666
« sqlsrv_errors sqlsrv_fetch_array » PHP Manual SQLSRV 関数 Executes a statement prepared with s ... h sqlsrv_prepare() 説明 sqlsrv_execute ( resource $stmt ): bool Executes a statement prepared with sqlsrv_ ... times with different parameter values. パラメータ stmt A statement resource returned by sqlsrv_prepare() ... ariables $qty and $id are bound to the statement, $stmt. $qty = 0 ; $id = 0 ; $stmt = sqlsrv_prepare ( $co ... nn , $sql , array( & $qty , & $id )); if( ! $stmt ) { die( print_r ( sqlsrv_errors (), true )); } // ...
https://man.plustar.jp/php/function.sqlsrv-execute.html - [similar]
結果セットに関連付けられたリソースを開放する 5643
« db2_foreign_keys db2_free_stmt » PHP Manual IBM DB2 関数 結果セットに関連付けられたリソースを開 ... リソースを開放する 説明 db2_free_result ( resource $stmt ): bool 結果セットに関連付けられたシステムリソース ... セットリソースを開放することができます。 パラメータ stmt 有効なステートメントリソース。 戻り値 成功した場合 ... を、失敗した場合に false を返します。 参考 db2_free_stmt() - 指定されたステートメントリソースに関連付けられ ... 関連キーワード: リソース , 開放 , セット , free , stmt , result , ステートメント , スクリプト , 終了 , 明 ...
https://man.plustar.jp/php/function.db2-free-result.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT