検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 357 for fetch (0.224 sec.)
フィールドの長さ (精度) を得る 4129
« odbc_fetch_row odbc_field_name » PHP Manual ODBC 関数 フィールドの長さ (精度) を得る odbc_fiel ... る 関連キーワード: フィールド , 精度 , 番号 , int , fetch , row , 関数 , resource , 参照 , 取得 ...
https://man.plustar.jp/php/function.odbc-field-len.html - [similar]
Set the memory limit for the Lua environment 4129
« LuaSandbox::setCPULimit LuaSandbox::unpauseUsageTimer » PHP Manual LuaSandbox Set the memory l ... enough memory 参考 LuaSandbox::getMemoryUsage() - Fetch the current memory usage of the Lua environment Lu ... aSandbox::getPeakMemoryUsage() - Fetch the peak memory usage of the Lua environment LuaSa ...
https://man.plustar.jp/php/luasandbox.setmemorylimit.html - [similar]
データベース更新の自動コミットをオンまたはオフにする 4129
« mysqli::$affected_rows mysqli::begin_transaction » PHP Manual mysqli データベース更新の自動コミ ... query ( "SELECT @@autocommit" ); $row = $result -> fetch_row (); printf ( "Autocommit is %s\n" , $row [ 0 ] ... query ( "SELECT @@autocommit" ); $row = $result -> fetch_row (); printf ( "Autocommit is %s\n" , $row [ 0 ] ... ( $mysqli , "SELECT @@autocommit" ); $row = mysqli_fetch_row ( $result ); printf ( "Autocommit is %s\n" , $ ... ( $mysqli , "SELECT @@autocommit" ); $row = mysqli_fetch_row ( $result ); printf ( "Autocommit is %s\n" , $ ...
https://man.plustar.jp/php/mysqli.autocommit.html - [similar]
直近のレスポンスの HTTP 情報を取得する 4129
« OAuth::getLastResponseHeaders OAuth::getRequestHeader » PHP Manual OAuth 直近のレスポンスの HT ... す。 curl_getinfo() の定数が使われます。 参考 OAuth::fetch() - OAuth で保護されたリソースを取得する OAuth::ge ... nseInfo , パラメータ , getinfo , リソース , 保護 , fetch ...
https://man.plustar.jp/php/oauth.getlastresponseinfo.html - [similar]
非同期に通知を取得する 4129
« PDO::pgsqlCopyToFile PDO::pgsqlGetPid » PHP Manual PostgreSQL (PDO) 非同期に通知を取得する PDO ... blic PDO::pgsqlGetNotify ( int $result_type = PDO::FETCH_USE_DEFAULT , int $ms_timeout = 0 ): array | false ... ータ result_type 結果セットを返すフォーマット。 PDO::FETCH_* 定数で表現します。 ms_timeout レスポンスを待つ時 ...
https://man.plustar.jp/php/pdo.pgsqlgetnotify.html - [similar]
新規の変数をデータ領域にキャッシュする 4111
« APCu 関数 apcu_cache_info » PHP Manual APCu 関数 新規の変数をデータ領域にキャッシュする apcu_a ... 'BAR' ; apcu_add ( 'foo' , $bar ); var_dump ( apcu_fetch ( 'foo' )); echo "\n" ; $bar = 'NEVER GETS SET' ; ... apcu_add ( 'foo' , $bar ); var_dump ( apcu_fetch ( 'foo' )); echo "\n" ; ?> 上の例の出力は以下となり ... cu_store() - 変数をデータ領域にキャッシュする apcu_fetch() - 格納されている変数をキャッシュから取得する apc ...
https://man.plustar.jp/php/function.apcu-add.html - [similar]
MySQL サーバー上で利用可能なデータベースのリストを得る 4111
« mysql_insert_id mysql_list_fields » PHP Manual MySQL 関数 MySQL サーバー上で利用可能なデータベ ... 関数を利用し、取得したテーブルを 利用するには mysql_fetch_array() などの関数を 利用してください。 例 例1 mys ... l_query ( "SHOW DATABASES" ); while ( $row = mysql_fetch_assoc ( $res )) { echo $row [ 'Database' ] . "\n" ... t = mysql_list_dbs ( $link ); while ( $row = mysql_fetch_object ( $db_list )) { echo $row -> Database . "\n ...
https://man.plustar.jp/php/function.mysql-list-dbs.html - [similar]
メタデータ 4111
« トランザクションのサポート インストール/設定 » PHP Manual クイックスタートガイド メタデータ メ ... Hello' AS _two FROM DUAL" ); var_dump ( $result -> fetch_fields ()); 上の例の出力は以下となります。 array(2 ... $stmt -> result_metadata (); var_dump ( $result -> fetch_fields ()); 参照 mysqli::query() mysqli_result::fe ...
https://man.plustar.jp/php/mysqli.quickstart.metadata.html - [similar]
ストアドプロシージャ 4111
« プリペアドステートメント 複数のステートメント » PHP Manual クイックスタートガイド ストアドプロ ... y ( "SELECT id FROM test" ); var_dump ( $result -> fetch_assoc ()); 上の例の出力は以下となります。 array(1) ... ery ( "SELECT @msg as _p_out" ); $row = $result -> fetch_assoc (); echo $row [ '_p_out' ]; 上の例の出力は以 ... lt ()) { printf ( "---\n" ); var_dump ( $result -> fetch_all ()); $result -> free (); } } while ( $mysqli - ... lt ()) { printf ( "---\n" ); var_dump ( $result -> fetch_all ()); $result -> free (); } } while ( $stmt -> ...
https://man.plustar.jp/php/mysqli.quickstart.stored-procedures.html - [similar]
4111
« 定義済み定数 OCI8 接続のハンドリングおよびプーリング » PHP Manual OCI8 例 例 これらの例では HR ... print "<table border='1'>\n" ; while ( $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN_NULLS )) { ... idbv ); oci_execute ( $stid ); while (( $row = oci_fetch_array ( $stid , OCI_ASSOC )) != false ) { echo $ro ... ); print '<table border="1">' ; while ( $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN_LOBS )) { p ... echo "<table border='1'>\n" ; while (( $row = oci_fetch_array ( $stid , OCI_ASSOC ))) { echo "<tr>\n" ; $r ...
https://man.plustar.jp/php/oci8.examples.html - [similar]