検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 225 for link (0.003 sec.)
プリペアドステートメントを実行する 5846
« mysqli_stmt::$error mysqli_stmt::fetch » PHP Manual mysqli_stmt プリペアドステートメントを実行 ... t ( MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT ); $link = mysqli_connect ( "localhost" , "my_user" , "my_p ... assword" , "world" ); mysqli_query ( $link , "CREATE TEMPORARY TABLE myCity LIKE City" ); /* ... insert 文を準備します */ $stmt = mysqli_prepare ( $link , "INSERT INTO myCity (Name, CountryCode, District ... District FROM myCity" ; $result = mysqli_query ( $link , $query ); while ( $row = mysqli_fetch_row ( $res ...
https://man.plustar.jp/php/mysqli-stmt.execute.html - [similar]
直近の関数コールによるエラーコードを返す 5805
« mysqli::dump_debug_info mysqli::$error_list » PHP Manual mysqli 直近の関数コールによるエラーコ ... いは失敗した際のエラーコードを返します。 パラメータ link 手続き型のみ: mysqli_connect() あるいは mysqli_ini ... 閉じます */ $mysqli -> close (); ?> 手続き型 <?php $link = mysqli_connect ( "localhost" , "my_user" , "my_p ... connect_error ()); exit(); } if (! mysqli_query ( $link , "SET a=1" )) { printf ( "Errorcode: %d\n" , mysq ... li_errno ( $link )); } /* 接続を閉じます */ mysqli_close ( $link ); ...
https://man.plustar.jp/php/mysqli.errno.html - [similar]
直近のエラーの内容を文字列で返す 5805
« mysqli::$error_list mysqli::$field_count » PHP Manual mysqli 直近のエラーの内容を文字列で返す ... 失敗した際のエラーメッセージを返します。 パラメータ link 手続き型のみ: mysqli_connect() あるいは mysqli_ini ... 閉じます */ $mysqli -> close (); ?> 手続き型 <?php $link = mysqli_connect ( "localhost" , "my_user" , "my_p ... connect_error ()); exit(); } if (! mysqli_query ( $link , "SET a=1" )) { printf ( "Error message: %s\n" , ... mysqli_error ( $link )); } /* 接続を閉じます */ mysqli_close ( $link ); ...
https://man.plustar.jp/php/mysqli.error.html - [similar]
Perform a query without fetching the results into memory 5763
« cubrid_result CUBRID 廃止されたエイリアスと関数 » PHP Manual CUBRID MySQL 互換関数 Perform a q ... e. 例 例1 cubrid_unbuffered_query() example <?php $link = cubrid_connect ( "localhost" , 30000 , "demodb" ... , "dba" , "" ); if (! $link ) { die( 'Could not connect.' ); } $query = "selec ... e" ; $result = cubrid_unbuffered_query ( $query , $link ); while ( $row = cubrid_fetch ( $result )) { var_ ... id_close_request ( $result ); cubrid_disconnect ( $link ); ?> 注意 注意 : The benefits of cubrid_unbuffere ...
https://man.plustar.jp/php/function.cubrid-unbuffered-query.html - [similar]
直近で実行したコマンドからのエラーの一覧を返す 5763
« mysqli::$errno mysqli::$error » PHP Manual mysqli 直近で実行したコマンドからのエラーの一覧を返 ... MySQLi 関数コールで発生したエラーです。 パラメータ link 手続き型のみ: mysqli_connect() あるいは mysqli_ini ... 閉じます */ $mysqli -> close (); ?> 手続き型 <?php $link = mysqli_connect ( "localhost" , "my_user" , "my_p ... connect_error ()); exit(); } if (! mysqli_query ( $link , "SET a=1" )) { print_r ( mysqli_error_list ( $li ... nk )); } /* 接続を閉じます */ mysqli_close ( $link ); ?> 上の例の出力は以下となります。 Array ( [0] = ...
https://man.plustar.jp/php/mysqli.error-list.html - [similar]
接続を問い合わせる 5763
« mysqli::ping mysqli::prepare » PHP Manual mysqli 接続を問い合わせる mysqli::poll mysqli_poll ( ... alse を返します。 例 例1 mysqli_poll() の例 <?php $link1 = mysqli_connect (); $link1 -> query ( "SELECT 't ... est'" , MYSQLI_ASYNC ); $all_links = array( $link1 ); $processed = 0 ; do { $links = ... $errors = $reject = array(); foreach ( $all_links as $link ) { $links [] = $errors [] = $reject [] ... = $link ; } if (! mysqli_poll ( $links , $errors , $reject ...
https://man.plustar.jp/php/mysqli.poll.html - [similar]
トランザクションを開始する 5722
« ibase_set_event_handler ibase_wait_event » PHP Manual Firebird/InterBase 関数 トランザクション ... 説明 ibase_trans ( int $trans_args = ? , resource $link_identifier = ? ): resource ibase_trans ( resource ... $link_identifier = ? , int $trans_args = ? ): resource ト ... されます。 注意 : この関数は複数の trans_args および link_identifier を指定することが可能です。これにより、 ... _query() および ibase_prepare() をコールする際には link_id および transaction_id の両方を指定する必要があり ...
https://man.plustar.jp/php/function.ibase-trans.html - [similar]
MySQL データベースを選択する 5722
« mysql_result mysql_set_charset » PHP Manual MySQL 関数 MySQL データベースを選択する mysql_sele ... ysql_select_db ( string $database_name , resource $link_identifier = NULL ): bool 指定したリンク ID が指す ... パラメータ database_name 選択するデータベース名。 link_identifier MySQL 接続。指定されない場合、 mysql_co ... を返します。 例 例1 mysql_select_db() の例 <?php $link = mysql_connect ( 'localhost' , 'mysql_user' , 'my ... sql_password' ); if (! $link ) { die( 'Not connected : ' . mysql_error ()); } / ...
https://man.plustar.jp/php/function.mysql-select-db.html - [similar]
直前のステートメントの操作での SQLSTATE エラーを返す 5722
« mysqli_stmt::send_long_data mysqli_stmt::store_result » PHP Manual mysqli_stmt 直前のステートメ ... ?> 例2 手続き型 <?php /* 接続をオープンします */ $link = mysqli_connect ( "localhost" , "my_user" , "my_p ... ysqli_connect_error ()); exit(); } mysqli_query ( $link , "CREATE TABLE myCountry LIKE Country" ); mysqli_ ... query ( $link , "INSERT INTO myCountry SELECT * FROM Country" ); ... ry ORDER BY Name" ; if ( $stmt = mysqli_prepare ( $link , $query )) { /* テーブルを削除します */ mysqli_qu ...
https://man.plustar.jp/php/mysqli-stmt.sqlstate.html - [similar]
プリペアドステートメントから結果セットのメタデータを返す 5680
« mysqli_stmt::reset mysqli_stmt::send_long_data » PHP Manual mysqli_stmt プリペアドステートメン ... ます */ $mysqli -> close (); ?> 例2 手続き型 <?php $link = mysqli_connect ( "localhost" , "my_user" , "my_p ... assword" , "test" ); mysqli_query ( $link , "DROP TABLE IF EXISTS friends" ); mysqli_query ( ... $link , "CREATE TABLE friends (id int, name varchar(20)) ... " ); mysqli_query ( $link , "INSERT INTO friends VALUES (1,'Hartmut'), (2, ' ...
https://man.plustar.jp/php/mysqli-stmt.result-metadata.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT