検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 132 for 挿入 (0.008 sec.)
二つの文字列のレーベンシュタイン距離を計算する 5921
« lcfirst localeconv » PHP Manual String 関数 二つの文字列のレーベンシュタイン距離を計算する lev ... ン距離は、 string1 を string2 に変換するために置換、挿入、削除 しなければならない最小の文字数として定義されま ... tion_cost < $replacement_cost の場合、 置換をせず、挿入と削除が行われます。 パラメータ string1 レーベンシュ ... タイン距離を計算する文字列のひとつ。 insertion_cost 挿入のコストを定義します。 replacement_cost 置換のコスト ...
https://man.plustar.jp/php/function.levenshtein.html - [similar]
Oracle データベースに接続する 5921
« oci_commit oci_define_by_name » PHP Manual OCI8 関数 Oracle データベースに接続する oci_connect ... ); insert_data ( 'c1' , $c1 ); // c1 を使用して行を挿入 sleep ( 2 ); // 2行目で異なるタイムスタンプを表示す ... ます insert_data ( 'c2' , $c2 ); // c2 を使用して行を挿入 select_data ( 'c1' , $c1 ); // 両方の挿入結果が返さ ... れます select_data ( 'c2' , $c2 ); // 両方の挿入結果が返されます rollback ( 'c1' , $c1 ); // c1 を使 ... てロールパック select_data ( 'c1' , $c1 ); // 両方の挿入行為がロールバックされました select_data ( 'c2' , $c ...
https://man.plustar.jp/php/function.oci-connect.html - [similar]
SplPriorityQueue クラス 5824
« SplMinHeap::compare SplPriorityQueue::compare » PHP Manual データ構造 SplPriorityQueue クラス ... 素の順番は 未定義 です。 優先度が等しい要素の順序は、挿入された順序と異なるかもしれません。 クラス概要 class ... を取得する SplPriorityQueue::insert — キューに要素を挿入する SplPriorityQueue::isCorrupted — 優先度付きキュー ...
https://man.plustar.jp/php/class.splpriorityqueue.html - [similar]
キーが指すデータを取得する 5824
« dba_exists dba_firstkey » PHP Manual DBA 関数 キーが指すデータを取得する dba_fetch (PHP 4, PHP ... 指す DBA エントリを削除する dba_insert() - エントリを挿入する dba_replace() - エントリを置換または挿入する db ...
https://man.plustar.jp/php/function.dba-fetch.html - [similar]
Mysql_xdevapi 5678
« 変更履歴 はじめに » PHP Manual MySQL Mysql_xdevapi Mysql_xdevapi はじめに インストール/設定 要 ... ctionModify::arrayInsert — 配列のフィールドに要素を挿入する CollectionModify::bind — クエリのプレースホルダ ... 取得する SqlStatementResult::getLastInsertId — 最後に挿入されたidを取得する SqlStatementResult::getWarnings — ... のセッションを取得する Table::insert — テーブルに行を挿入する Table::isView — テーブルがビューかどうかを調べる ... te — insert クエリを実行する TableInsert::values — 挿入する行の値を追加する mysql_xdevapi\TableSelect — Tab ...
https://man.plustar.jp/php/book.mysql-xdevapi.html - [similar]
クエリに使う文字列をエスケープする 5678
« pg_escape_literal pg_execute » PHP Manual PostgreSQL 関数 クエリに使う文字列をエスケープする p ... pg_escape_string ( $data ); // それをデータベースに挿入する pg_query ( "INSERT INTO correspondence (name, d ... " ); ?> 参考 pg_escape_bytea() - bytea フィールドに挿入するために文字列をエスケープする 関連キーワード: エス ...
https://man.plustar.jp/php/function.pg-escape-string.html - [similar]
Oracle プレースホルダに PHP 変数をバインドする 5630
« oci_bind_array_by_name oci_cancel » PHP Manual OCI8 関数 Oracle プレースホルダに PHP 変数をバイ ... を返します。 例 例1 oci_bind_by_name() によるデータの挿入 <?php // このようなテーブルを作ります // CREATE TA ... ER_ERROR ); } $a = array( 1 , 3 , 5 , 7 , 11 ); // 挿入するデータ $stid = oci_parse ( $conn , 'INSERT INTO ... ROWID のバインド <?php // この例では id と name を挿入し、それから salary を更新します // このようなテーブ ... _name ( $upd_stid , ":salary" , $salary , 32 ); // 挿入する id と name $data = array( 1111 => "Larry" , 222 ...
https://man.plustar.jp/php/function.oci-bind-by-name.html - [similar]
文字列の一部を置換する 5582
« substr_count substr » PHP Manual String 関数 文字列の一部を置換する substr_replace (PHP 4, PHP ... の関数は string の最初から offset の位置に replace を挿入するということになります。 戻り値 結果の文字列を返し ... ( $var )) . "<br />\n" ; /* $var の先頭に 'bob' を挿入します */ echo substr_replace ( $var , 'bob' , 0 , 0 ...
https://man.plustar.jp/php/function.substr-replace.html - [similar]
直前の MySQL の操作で変更された行の数を得る 5582
« mysqli mysqli::autocommit » PHP Manual mysqli 直前の MySQL の操作で変更された行の数を得る mysq ... t" , "my_user" , "my_password" , "world" ); /* 行を挿入します */ $mysqli -> query ( "CREATE TABLE Language ... t" , "my_user" , "my_password" , "world" ); /* 行を挿入します */ mysqli_query ( $link , "CREATE TABLE Langu ...
https://man.plustar.jp/php/mysqli.affected-rows.html - [similar]
5582
« 定義済み定数 OCI8 接続のハンドリングおよびプーリング » PHP Manual OCI8 例 例 これらの例では HR ... ); oci_close ( $conn ); ?> 例2 バインド変数を用いた挿入 バインド変数を使うと、実行コンテキストをキャッシュ ... ; oci_close ( $conn ); ?> 例4 CLOB カラムにデータを挿入する 巨大なデータに対しては、バイナリラージオブジェク ... ーワード: 変数 , 例 , 接続 , ユーザー , OCI , CLOB , 挿入 , 向上 , データ , サンプル ...
https://man.plustar.jp/php/oci8.examples.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT