検索

phrase: max: clip:
target: order:
Results of 151 - 160 of about 270 for conn (0.070 sec.)
Get column types in result 4510
« cubrid_column_names cubrid_commit » PHP Manual CUBRID 関数 Get column types in result cubrid_c ... します. 例 例1 cubrid_column_types() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... , "dba" ); $result = cubrid_execute ( $conn , "SELECT * FROM game WHERE host_year=2004 AND nat ... , $column_types [ $i ], $column_len ); } cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 Co ...
https://man.plustar.jp/php/function.cubrid-column-types.html - [similar]
Move the internal row pointer of the CUBRID result 4510
« cubrid_close cubrid_db_name » PHP Manual CUBRID MySQL 互換関数 Move the internal row pointer o ... failure. 例 例1 cubrid_data_seek() example <?php $conn = cubrid_connect ( "127.0.0.1" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT * FROM code" ); cubrid_data_seek ( $req ... result ); cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 ar ...
https://man.plustar.jp/php/function.cubrid-data-seek.html - [similar]
Get the maximum length of the specified field 4510
« cubrid_field_flags cubrid_field_name » PHP Manual CUBRID MySQL 互換関数 Get the maximum length ... failure. 例 例1 cubrid_field_len() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $result = cubrid_execute ( $conn , "SELECT * FROM game WHERE host_year=2004 AND nat ... , $column_types [ $i ], $column_len ); } cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 Co ...
https://man.plustar.jp/php/function.cubrid-field-len.html - [similar]
SQL 文が返す SQLSTATE を含む文字列を返す 4510
« db2_statistics db2_stmt_errormsg » PHP Manual IBM DB2 関数 SQL 文が返す SQLSTATE を含む文字列を ... 戻り値 SQLSTATE を含む文字列を返します。 参考 db2_conn_error() - 直近の接続から返された SQLSTATE を含む文 ... 字列を返す db2_conn_errormsg() - 直近の接続エラーメッセージおよび SQLC ... 近 , リソース , エラーメッセージ , ステートメント , conn , SQLCODE ...
https://man.plustar.jp/php/function.db2-stmt-error.html - [similar]
MQSeries MQCMIT 4510
« mqseries_close mqseries_conn » PHP Manual mqseries 関数 MQSeries MQCMIT mqseries_cmit (PECL mq ... — MQSeries MQCMIT 説明 mqseries_cmit ( resource $hconn , resource &$compCode , resource &$reason ): void ... として取得したメッセージは削除されます。 パラメータ hConn 接続ハンドル。 このハンドルは、キューマネージャへの ... 例 例1 mqseries_cmit() の例 <?php mqseries_cmit ( $conn , $comp_code , $reason ); if ( $comp_code !== MQSE ... MQBEGIN mqseries_back() - MQSeries MQBACK mqseries_conn() - MQSeries MQCONN mqseries_connx() - MQSeries MQ ...
https://man.plustar.jp/php/function.mqseries-cmit.html - [similar]
行をオブジェクトとして得る 4510
« pg_fetch_assoc pg_fetch_result » PHP Manual PostgreSQL 関数 行をオブジェクトとして得る pg_fetc ... etch_object() の例 <?php $database = "store" ; $db_conn = pg_connect ( "host=localhost port=5432 dbname= $ ... database " ); if (! $db_conn ) { echo "Failed connecting to postgres database $ ... database \n" ; exit; } $qu = pg_query ( $db_conn , "SELECT * FROM books ORDER BY author" ); while ( ... <br />" ; } pg_free_result ( $qu ); pg_close ( $db_conn ); ?> 参考 pg_query() - クエリを実行する pg_fetch_ ...
https://man.plustar.jp/php/function.pg-fetch-object.html - [similar]
バックエンドのプロセス ID を得る 4510
« pg_get_notify pg_get_result » PHP Manual PostgreSQL 関数 バックエンドのプロセス ID を得る pg_g ... クエンドのプロセス ID を得る 説明 pg_get_pid ( PgSql\Connection $connection ): int pg_get_pid() は、バックエ ... れている かどうかを調べるために有用です。 パラメータ connection PgSql\Connection クラスのインスタンス。 戻り ... ースのプロセス ID 。 変更履歴 バージョン 説明 8.1.0 connection は、 PgSql\Connection クラスのインスタンスを ... ました。 例 例1 PostgreSQL バックエンドの PID <?php $conn = pg_pconnect ( "dbname=publisher" ); if (! $conn ...
https://man.plustar.jp/php/function.pg-get-pid.html - [similar]
クライアントのエンコーディングを設定する 4510
« pg_send_query pg_set_error_verbosity » PHP Manual PostgreSQL 関数 クライアントのエンコーディン ... ィングを設定する 説明 pg_set_client_encoding ( PgSql\Connection $connection = ? , string $encoding ): int pg ... etclientencoding() と呼ばれていました。 パラメータ connection PgSql\Connection クラスのインスタンス。 conn ... フォルトの接続を使います。 デフォルトの接続とは、 pg_connect() または pg_pconnect() によって確立された直近の ... 時に -1 を返します。 変更履歴 バージョン 説明 8.1.0 connection は、 PgSql\Connection クラスのインスタンスを ...
https://man.plustar.jp/php/function.pg-set-client-encoding.html - [similar]
Returns the number of rows modified by the last INSERT, UPDATE, or DELETE query ... 4510
« sqlsrv_rollback sqlsrv_send_stream_data » PHP Manual SQLSRV 関数 Returns the number of rows mo ... 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 ... ray( "updated data" , 1 ); $stmt = sqlsrv_query ( $conn , $sql , $params ); $rows_affected = sqlsrv_rows_a ...
https://man.plustar.jp/php/function.sqlsrv-rows-affected.html - [similar]
Sends data from parameter streams to the server 4510
« sqlsrv_rows_affected sqlsrv_server_info » PHP Manual SQLSRV 関数 Sends data from parameter str ... 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 ... eamParamsAtExec" => 0 ); $stmt = sqlsrv_prepare ( $conn , $sql , $params , $options ); sqlsrv_execute ( $s ...
https://man.plustar.jp/php/function.sqlsrv-send-stream-data.html - [similar]