検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 43 for xe (0.004 sec.)
Oracle におけるフィールドの型を問い合わせる 6833
« oci_field_size oci_field_type » PHP Manual OCI8 関数 Oracle におけるフィールドの型を問い合わせ ... $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); if (! $conn ) { $m = oci_error (); trigger_err ... oci_parse ( $conn , 'select * from mytab' ); oci_execute ( $stid , OCI_DESCRIBE_ONLY ); // 行をフェッチ ...
https://man.plustar.jp/php/function.oci-field-type-raw.html - [similar]
フィールドのデータ型の名前を返す 6833
« oci_field_type_raw oci_free_descriptor » PHP Manual OCI8 関数 フィールドのデータ型の名前を返す ... $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); if (! $conn ) { $m = oci_error (); trigger_err ... oci_parse ( $conn , "SELECT * FROM mytab" ); oci_execute ( $stid , OCI_DESCRIBE_ONLY ); // 行をフェッチ ...
https://man.plustar.jp/php/function.oci-field-type.html - [similar]
フェッチした行からフィールドの値を取得する 6833
« oci_register_taf_callback oci_rollback » PHP Manual OCI8 関数 フェッチした行からフィールドの値 ... ( resource $statement , string | int $column ): mixed oci_fetch() によってフェッチされた現在の行のフィー ... conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ); if (! $conn ) { $e = oci_error (); trigger_err ... < 1200' ; $stid = oci_parse ( $conn , $sql ); oci_execute ( $stid ); while ( oci_fetch ( $stid )) { echo ...
https://man.plustar.jp/php/function.oci-result.html - [similar]
CLOB や BLOB ごとにプリフェッチするデータサイズを設定する 6833
« oci_set_module_name oci_set_prefetch » PHP Manual OCI8 関数 CLOB や BLOB ごとにプリフェッチする ... e $statement , int $prefetch_lob_size ): bool oci_execute() を使って成功したクエリや、 その後に実行される ... TURN_LOBS を使って返される LOB に影響します。 oci_execute() をコールする前に、 oci_set_prefetch_lob() を ... 。 パラメータ statement oci_parse() で作成して oci_execute() で実行した有効な OCI8 ステートメント ID、 あ ... conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ); $stid = oci_parse ( $conn , 'SELECT myclob FRO ...
https://man.plustar.jp/php/function.oci-set-prefetch-lob.html - [similar]
PHP の配列を Oracle PL/SQL の配列に名前でバインドする 6663
« OCI8 関数 oci_bind_by_name » PHP Manual OCI8 関数 PHP の配列を Oracle PL/SQL の配列に名前でバイ ... $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); if (! $conn ) { $m = oci_error (); trigger_err ... 0))" ; $stid = oci_parse ( $conn , $create ); oci_execute ( $stid ); $create_pkg = " CREATE OR REPLACE P ... ; $stid = oci_parse ( $conn , $create_pkg ); oci_execute ( $stid ); $create_pkg_body = " CREATE OR REPL ... tid = oci_parse ( $conn , $create_pkg_body ); oci_execute ( $stid ); $stid = oci_parse ( $conn , "BEGIN ...
https://man.plustar.jp/php/function.oci-bind-array-by-name.html - [similar]
最後に見つかったエラーを返す 6663
« oci_define_by_name oci_execute » PHP Manual OCI8 関数 最後に見つかったエラーを返す oci_error ( ... conn = oci_connect ( "hr" , "welcome" , "localhost/XE" ); if (! $conn ) { $e = oci_error (); // oci_conn ... n , "select does_not_exist from dual" ); $r = oci_execute ( $stid ); if (! $r ) { $e = oci_error ( $stid ... ); // oci_execute のエラーの場合、ステートメントハンドルを渡しま ...
https://man.plustar.jp/php/function.oci-error.html - [similar]
アクション名を設定します 6663
« oci_server_version oci_set_call_timeout » PHP Manual OCI8 関数 アクション名を設定します oci_se ... p $c = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ); // アクションを登録する oci_set_action ( $c , ... $s = oci_parse ( $c , 'select * from dual' ); oci_execute ( $s ); oci_fetch_all ( $s , $res ); sleep ( 3 ...
https://man.plustar.jp/php/function.oci-set-action.html - [similar]
クライアント識別子を設定します 6663
« oci_set_call_timeout oci_set_client_info » PHP Manual OCI8 関数 クライアント識別子を設定します ... oci_connect ( 'myschema' , 'welcome' , 'localhost/XE' ); // そのユーザーが誰であるか Oracle に通知 oci_ ... _parse ( $c , 'select mydata from mytable' ); oci_execute ( $s ); // ... ?> 注意 警告 データベースとのや ...
https://man.plustar.jp/php/function.oci-set-client-identifier.html - [similar]
クライアント情報を設定する 6663
« oci_set_client_identifier oci_set_db_operation » PHP Manual OCI8 関数 クライアント情報を設定す ... p $c = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ); // クライアント情報を登録する oci_set_client_i ... $s = oci_parse ( $c , 'select * from dual' ); oci_execute ( $s ); oci_fetch_all ( $s , $res ); sleep ( 3 ...
https://man.plustar.jp/php/function.oci-set-client-info.html - [similar]
モジュール名を設定します 6663
« oci_set_edition oci_set_prefetch_lob » PHP Manual OCI8 関数 モジュール名を設定します oci_set_m ... p $c = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ); // モジュールを登録する oci_set_module_name ( ... $s = oci_parse ( $c , 'select * from dual' ); oci_execute ( $s ); oci_fetch_all ( $s , $res ); sleep ( 3 ...
https://man.plustar.jp/php/function.oci-set-module-name.html - [similar]
PREV 1 2 3 4 5 NEXT