検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 270 for conn (0.012 sec.)
Return a string with the flags of the given field offset 4480
« cubrid_fetch_row cubrid_field_len » PHP Manual CUBRID MySQL 互換関数 Return a string with the ... SELECT. 例 例1 cubrid_field_flags() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $result = cubrid_execute ( $conn , "SELECT * FROM game WHERE host_year=2004 AND nat ... cubrid_field_flags ( $result , $i )); } cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 Fi ...
https://man.plustar.jp/php/function.cubrid-field-flags.html - [similar]
ストアドプロシージャから、次の結果セットを要求する 4480
« db2_lob_read db2_num_fields » PHP Manual IBM DB2 関数 ストアドプロシージャから、次の結果セット ... が返すステートメントリソースから取得します。 <?php $conn = db2_connect ( $database , $user , $password ); i ... f ( $conn ) { $stmt = db2_exec ( $conn , 'CALL multiResults( ... y ( $res2 )) { var_dump ( $row ); } } db2_close ( $conn ); } ?> 上の例の出力は以下となります。 最初の結果セ ...
https://man.plustar.jp/php/function.db2-next-result.html - [similar]
利用可能なDSNについての情報を返す 4480
« odbc_cursor odbc_do » PHP Manual ODBC 関数 利用可能なDSNについての情報を返す odbc_data_source ... 返します。 パラメータ odbc ODBC 接続 ID。詳細は odbc_connect() を参照ください。 fetch_type fetch_type は次の ... します。 例 例1 利用可能なDSNの一覧を表示する <?php $conn = odbc_connect ( 'dsn' , 'user' , 'pass' ); $dsn_i ... nfo = odbc_data_source ( $conn , SQL_FETCH_FIRST ); while ( $dsn_info ) { print_r ... ( $dsn_info ); $dsn_info = odbc_data_source ( $conn , SQL_FETCH_NEXT ); } ?> 上の例の出力は、 たとえば ...
https://man.plustar.jp/php/function.odbc-data-source.html - [similar]
Retrieves metadata for the fields of a statement prepared by sqlsrv_prepare or s... 4480
« sqlsrv_fetch sqlsrv_free_stmt » PHP Manual SQLSRV 関数 Retrieves metadata for the fields of a ... ple <?php $serverName = "serverName\sqlexpress" ; $connectionInfo = array( "Database" => "AdventureWorks" ... , "UID" => "username" , "PWD" => "password" ); $conn = sqlsrv_connect ( $serverName , $connectionInfo ) ... ; if( $conn === false ) { die( print_r ( sqlsrv_errors (), tru ... SELECT * FROM Table_1" ; $stmt = sqlsrv_prepare ( $conn , $sql ); foreach( sqlsrv_field_metadata ( $stmt ) ...
https://man.plustar.jp/php/function.sqlsrv-field-metadata.html - [similar]
Makes an HTTP request over the specified connection 4451
« EventHttpConnection::getPeer EventHttpConnection::setCloseCallback » PHP Manual EventHttpConne ... ction Makes an HTTP request over the specified connection EventHttpConnection::makeRequest (PECL event ... >= 1.4.0-beta) EventHttpConnection::makeRequest — Makes an HTTP request over th ... e specified connection 説明 public EventHttpConnection::makeRequest ... i ): bool Makes an HTTP request over the specified connection. type is one of EventHttpRequest::CMD_* cons ...
https://man.plustar.jp/php/eventhttpconnection.makerequest.html - [similar]
データベース接続を調べる 4451
« pg_pconnect pg_port » PHP Manual PostgreSQL 関数 データベース接続を調べる pg_ping (PHP 4 >= 4. ... — データベース接続を調べる 説明 pg_ping ( ? PgSql\Connection $connection = null ): bool pg_ping() はデータ ... 壊れている場合には再度接続を試みます。 パラメータ connection PgSql\Connection クラスのインスタンス。 conn ... フォルトの接続を使います。 デフォルトの接続とは、 pg_connect() または pg_pconnect() によって確立された直近の ... false を返します。 変更履歴 バージョン 説明 8.1.0 connection は、 PgSql\Connection クラスのインスタンスを ...
https://man.plustar.jp/php/function.pg-ping.html - [similar]
Cancels a statement 4451
« sqlsrv_begin_transaction sqlsrv_client_info » PHP Manual SQLSRV 関数 Cancels a statement sqlsr ... ple <?php $serverName = "serverName\sqlexpress" ; $connectionInfo = array( "Database" => "dbName" , "UID" ... => "username" , "PWD" => "password" ); $conn = sqlsrv_connect ( $serverName , $connectionInfo ) ... ; if( $conn === false ) { die( print_r ( sqlsrv_errors (), tru ... CT Sales FROM Table_1" ; $stmt = sqlsrv_prepare ( $conn , $sql ); if( $stmt === false ) { die( print_r ( s ...
https://man.plustar.jp/php/function.sqlsrv-cancel.html - [similar]
Return the associative array that corresponds to the fetched row 4412
« cubrid_fetch_array cubrid_fetch_field » PHP Manual CUBRID MySQL 互換関数 Return the associativ ... essful. 例 例1 cubrid_fetch_assoc() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT name,area,seats,address FROM stadium WHE ... BRID_LOB) cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 na ...
https://man.plustar.jp/php/function.cubrid-fetch-assoc.html - [similar]
Return a numerical array with the values of the current row 4412
« cubrid_fetch_object cubrid_field_flags » PHP Manual CUBRID MySQL 互換関数 Return a numerical a ... ccessful. 例 例1 cubrid_fetch_row() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT name,area,seats,address FROM stadium WHE ... BRID_LOB) cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 na ...
https://man.plustar.jp/php/function.cubrid-fetch-row.html - [similar]
結果セット内の行を表す、カラムをプロパティとするオブジェクトを返す 4412
« db2_fetch_both db2_fetch_row » PHP Manual IBM DB2 関数 結果セット内の行を表す、カラムをプロパテ ... ロパティは "BREED" および "NAME" となります。 <?php $conn = db2_connect ( $database , $user , $password ); $ ... M(name) AS name FROM animals WHERE id = ?" ; if ( $conn ) { $stmt = db2_prepare ( $conn , $sql ); db2_exec ... , my little { $pet -> BREED } !" ; } db2_close ( $conn ); } ?> 上の例の出力は以下となります。 Come here, ...
https://man.plustar.jp/php/function.db2-fetch-object.html - [similar]