検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 274 for row (0.023 sec.)
Oracle データベースに接続する 4800
« oci_commit oci_define_by_name » PHP Manual OCI8 関数 Oracle データベースに接続する oci_connect ... ( $stid ); echo "<table border='1'>\n" ; while ( $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN ... _NULLS )) { echo "<tr>\n" ; foreach ( $row as $item ) { echo " <td>" . ( $item !== null ? htm ... ( $stid ); echo "<table border='1'>\n" ; while ( $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN ... _NULLS )) { echo "<tr>\n" ; foreach ( $row as $item ) { echo " <td>" . ( $item !== null ? htm ...
https://man.plustar.jp/php/function.oci-connect.html - [similar]
Makes the next result of the specified statement active 4800
« sqlsrv_has_rows sqlsrv_num_fields » PHP Manual SQLSRV 関数 Makes the next result of the specif ... ied statement active. Results include result sets, row counts, and output parameters. パラメータ stmt The ... produces two results on the statement: one for the rows affected by the INSERT and one for the rows retur ... ned by the SELECT. To get to the rows returned by the SELECT, sqlsrv_next_result() must ... , $query , $params ); // Consume the first result (rows affected by INSERT) without calling sqlsrv_next_r ...
https://man.plustar.jp/php/function.sqlsrv-next-result.html - [similar]
Oracle プレースホルダに PHP 変数をバインドする 4771
« oci_bind_array_by_name oci_cancel » PHP Manual OCI8 関数 Oracle プレースホルダに PHP 変数をバイ ... の変数) の型の間で変換を行います。 抽象データ型 (LOB/ROWID/BFILE) をバインドする必要がある場合、まず oci_ne ... QLT_BLOB or OCI_B_BLOB - BLOB 用 SQLT_RDD or OCI_B_ROWID - ROWID 用 SQLT_NTY or OCI_B_NTY - 名前付けされた ... , $key , $ba [ $key ]); } oci_execute ( $stid ); $row = oci_fetch_array ( $stid , OCI_ASSOC + OCI_RETURN ... _NULLS ); foreach ( $row as $item ) { print $item . "<br>\n" ; } oci_free_s ...
https://man.plustar.jp/php/function.oci-bind-by-name.html - [similar]
プリペアドステートメントのパラメータに変数をバインドする 4771
« mysqli_stmt::attr_set mysqli_stmt::bind_result » PHP Manual mysqli_stmt プリペアドステートメン ... percent = 11.2 ; $stmt -> execute (); printf ( "%d row inserted.\n" , $stmt -> affected_rows ); /* Countr ... anguage WHERE Language='Bavarian'" ); printf ( "%d row deleted.\n" , $mysqli -> affected_rows ); 手続き型 ... 11.2 ; mysqli_stmt_execute ( $stmt ); printf ( "%d row inserted.\n" , mysqli_stmt_affected_rows ( $stmt ) ... anguage WHERE Language='Bavarian'" ); printf ( "%d row deleted.\n" , mysqli_affected_rows ( $link )); 上の ...
https://man.plustar.jp/php/mysqli-stmt.bind-param.html - [similar]
結果セット内の行を表す、カラムをプロパティとするオブジェクトを返す 4742
« db2_fetch_both db2_fetch_row » PHP Manual IBM DB2 関数 結果セット内の行を表す、カラムをプロパテ ... を返す 説明 db2_fetch_object ( resource $stmt , int $row_number = -1 ): object 結果セット内の行を表す、カラ ... ラメータ stmt 結果セットを含む有効な stmt リソース。 row_number 結果セット内の 1 から始まる行番号を指定しま ... ラム名の両方をインデックスとする配列を返す db2_fetch_row() - 結果セットポインタを次の行あるいは要求された行 ... ード: セット , カラム , オブジェクト , fetch , 行 , row , 関数 , 名前 , stmt , インデックス ...
https://man.plustar.jp/php/function.db2-fetch-object.html - [similar]
SQL文で collate 関数として使うユーザー定義関数を登録する 4742
« PDO::sqliteCreateAggregate PDO::sqliteCreateFunction » PHP Manual SQLite (PDO) SQL文で collate ... uery ( "SELECT col1 FROM test ORDER BY col1" ) as $row ) { echo $row [ 'col1' ] . "\n" ; } echo "\n" ; fo ... FROM test ORDER BY col1 COLLATE NATURAL_CMP" ) as $row ) { echo $row [ 'col1' ] . "\n" ; } ?> 上の例の出力 ...
https://man.plustar.jp/php/pdo.sqlitecreatecollation.html - [similar]
SQLのcollate関数として使うPHP関数を登録する 4742
« SQLite3::createAggregate SQLite3::createFunction » PHP Manual SQLite3 SQLのcollate関数として使 ... LLATE NATURAL_CMP" ); echo "default:\n" ; while ( $row = $defaultSort -> fetchArray ()){ echo $row [ 'col ... 1' ], "\n" ; } echo "\nnatural:\n" ; while ( $row = $naturalSort -> fetchArray ()){ echo $row [ 'col ...
https://man.plustar.jp/php/sqlite3.createcollation.html - [similar]
クエリの次の行を連想配列で返す 4712
« oci_fetch_array oci_fetch_object » PHP Manual OCI8 関数 クエリの次の行を連想配列で返す oci_fet ... M departments' ); oci_execute ( $stid ); while (( $row = oci_fetch_assoc ( $stid )) != false ) { echo $ro ... w [ 'DEPARTMENT_ID' ] . " " . $row [ 'DEPARTMENT_NAME' ] . "<br>\n" ; } oci_free_stat ... - クエリの次の行をオブジェクトとして返す oci_fetch_row() - クエリの次の行を配列で返す 関連キーワード: oci ...
https://man.plustar.jp/php/function.oci-fetch-assoc.html - [similar]
一行ぶんの結果を配列に取り込む 4712
« odbc_fetch_array odbc_fetch_object » PHP Manual ODBC 関数 一行ぶんの結果を配列に取り込む odbc_ ... _into ( resource $statement , array &$array , int $row = 0 ): int | false 結果の行を array に取得します。 ... 列には、添字 0 から始まるカラム番号が代入されます。 row 行番号。 戻り値 結果におけるカラム番号を返します。 ... , 行ぶん , fetch , array , into , 番号 , カラム , row , int , 取得 ...
https://man.plustar.jp/php/function.odbc-fetch-into.html - [similar]
フィールドが SQL の NULL かどうか調べる 4712
« pg_fetch_row pg_field_name » PHP Manual PostgreSQL 関数 フィールドが SQL の NULL かどうか調べる ... 説明 pg_field_is_null ( PgSql\Result $result , int $row , mixed $field ): int pg_field_is_null ( PgSql\Res ... ute() が返した PgSql\Result クラスのインスタンス。 row 取得する結果の行番号。行番号は 0 から始まります。指 ... ql , result , インスタンス , int , クラス , 関数 , row , 期待 ...
https://man.plustar.jp/php/function.pg-field-is-null.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT