検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 270 for conn (0.010 sec.)
Return the value of a specific field in a specific row 4539
« cubrid_real_escape_string cubrid_unbuffered_query » PHP Manual CUBRID MySQL 互換関数 Return th ... on failure. 例 例1 cubrid_result() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT * FROM code" ); $result = cubrid_result ... result ); cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 st ...
https://man.plustar.jp/php/function.cubrid-result.html - [similar]
直近の SQL 文のエラーメッセージを含む文字列を返す 4539
« db2_stmt_error db2_table_privileges » PHP Manual IBM DB2 関数 直近の SQL 文のエラーメッセージを ... ラーメッセージおよび SQLSTATE を返します。 参考 db2_conn_error() - 直近の接続から返された SQLSTATE を含む文 ... 字列を返す db2_conn_errormsg() - 直近の接続エラーメッセージおよび SQLC ... errormsg , ステートメント , SQLSTATE , リソース , conn , 接続 ...
https://man.plustar.jp/php/function.db2-stmt-errormsg.html - [similar]
サービスマネージャに接続する 4539
« ibase_server_info ibase_service_detach » PHP Manual Firebird/InterBase 関数 サービスマネージャ ... tation ; } else { // エラー時にはメッセージを出力 $conn_error = ibase_errmsg (); die( $conn_error ); } ?> ... tation ; } else { // エラー時にはメッセージを出力 $conn_error = ibase_errmsg (); die( $conn_error ); } ?> ...
https://man.plustar.jp/php/function.ibase-service-attach.html - [similar]
フェッチした行からフィールドの値を取得する 4539
« oci_register_taf_callback oci_rollback » PHP Manual OCI8 関数 フェッチした行からフィールドの値 ... ci_fetch() と oci_result() を組み合わせる例 <?php $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ... ); if (! $conn ) { $e = oci_error (); trigger_error ( htmlentitie ... s WHERE location_id < 1200' ; $stid = oci_parse ( $conn , $sql ); oci_execute ( $stid ); while ( oci_fetch ... Venice oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP バージョン 5.0.0 以前では、代 ...
https://man.plustar.jp/php/function.oci-result.html - [similar]
Oracle データベースのバージョンを返す 4539
« oci_rollback oci_set_action » PHP Manual OCI8 関数 Oracle データベースのバージョンを返す oci_s ... バージョンを返す 説明 oci_server_version ( resource $connection ): string | false Oracle データベースのバージ ... ョンと利用可能なオプションを返します。 パラメータ connection 戻り値 バージョン情報を表す文字列、あるいはエ ... を返します。 例 例1 oci_server_version() の例 <?php $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); ... o "サーバーのバージョン: " . oci_server_version ( $conn ); // 出力は // サーバーのバージョン: Oracle Datab ...
https://man.plustar.jp/php/function.oci-server-version.html - [similar]
ステートメントの種類を返す 4539
« oci_set_prefetch oci_unregister_taf_callback » PHP Manual OCI8 関数 ステートメントの種類を返す ... を返します。 例 例1 oci_statement_type() の例 <?php $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ... ); $stid = oci_parse ( $conn , 'DELETE FROM departments WHERE department_id = 1 ... します } oci_free_statement ( $stid ); oci_close ( $conn ); ?> 関連キーワード: ステートメント , 種類 , oci ...
https://man.plustar.jp/php/function.oci-statement-type.html - [similar]
Frees all resources for the specified statement 4539
« sqlsrv_field_metadata sqlsrv_get_config » PHP Manual SQLSRV 関数 Frees all resources for the s ... 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 ... e )); } $stmt = sqlsrv_query ( $conn , "SELECT * FROM Table_1" ); if( $stmt === false ) ...
https://man.plustar.jp/php/function.sqlsrv-free-stmt.html - [similar]
Retrieves the number of fields (columns) on a statement 4539
« sqlsrv_next_result sqlsrv_num_rows » PHP Manual SQLSRV 関数 Retrieves the number of fields (co ... 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 ... "SELECT * FROM Table_1" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === false ) { die( print_r ( s ...
https://man.plustar.jp/php/function.sqlsrv-num-fields.html - [similar]
Constructs EventHttpRequest object 4510
« EventHttpRequest::closeConnection EventHttpRequest::findHeader » PHP Manual EventHttpRequest C ... esponseCode (); if ( $response_code == 0 ) { echo "Connection refused\n" ; } elseif ( $response_code != 20 ... 7.0.0.1" ; $port = 80 ; $base = new EventBase (); $conn = new EventHttpConnection ( $base , NULL , $addres ... s , $port ); $conn -> setTimeout ( 5 ); $req = new EventHttpRequest ( ... gth" , "0" , EventHttpRequest :: OUTPUT_HEADER ); $conn -> makeRequest ( $req , EventHttpRequest :: CMD_GE ...
https://man.plustar.jp/php/eventhttprequest.construct.html - [similar]
Get the column names in result 4510
« cubrid_col_size cubrid_column_types » PHP Manual CUBRID 関数 Get the column names in result cu ... します. 例 例1 cubrid_column_names() 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-names.html - [similar]