検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 270 for conn (0.004 sec.)
Commits a transaction that was begun with sqlsrv_begin_transaction 6506
« sqlsrv_close sqlsrv_configure » PHP Manual SQLSRV 関数 Commits a transaction that was begun wi ... begin_transaction() 説明 sqlsrv_commit ( resource $conn ): bool Commits a transaction that was begun with ... sqlsrv_begin_transaction() . The connection is returned to auto-commit mode after sqlsrv ... nformation, see » SQLSRV Transactions . パラメータ conn The connection on which the transaction is to be c ... ) . <?php $serverName = "serverName\sqlexpress" ; $connectionInfo = array( "Database" => "dbName" , "UID" ...
https://man.plustar.jp/php/function.sqlsrv-commit.html - [similar]
空の新規 LOB あるいは FILE ディスクリプタを初期化する 6476
« oci_new_cursor oci_num_fields » PHP Manual OCI8 関数 空の新規 LOB あるいは FILE ディスクリプタ ... プタを初期化する 説明 oci_new_descriptor ( resource $connection , int $type = OCI_DTYPE_LOB ): ? OCILob ディ ... ロケータを保持するリソースを確保します。 パラメータ connection oci_connect() あるいは oci_pconnect() が返す ... ルバックがないので、注意して使用してください。) */ $conn = oci_connect ( $user , $password ); $stmt = oci_p ... arse ( $conn , "select rowid from $table $where " ); $rowid = o ...
https://man.plustar.jp/php/function.oci-new-descriptor.html - [similar]
BLOB を読み取るためのストリームリソースを開く 6437
« SQLite3::open SQLite3::prepare » PHP Manual SQLite3 BLOB を読み取るためのストリームリソースを開 ... ていました。 例 例1 SQLite3::openBlob() の例 <?php $conn = new SQLite3 ( ':memory:' ); $conn -> exec ( 'CRE ... ATE TABLE test (text text)' ); $conn -> exec ( "INSERT INTO test VALUES ('Lorem ipsum') ... " ); $stream = $conn -> openBlob ( 'test' , 'text' , 1 ); echo stream_g ... // mandatory, otherwise the next line would fail $conn -> close (); ?> 上の例の出力は以下となります。 Lor ...
https://man.plustar.jp/php/sqlite3.openblob.html - [similar]
Return the CUBRID server version 6124
« cubrid_get_query_timeout cubrid_get » PHP Manual CUBRID 関数 Return the CUBRID server version ... er version 説明 cubrid_get_server_info ( resource $conn_identifier ): string This function returns a strin ... t represents the CUBRID server version. パラメータ conn_identifier The CUBRID connection. 戻り値 A string ... Version:" , cubrid_version ()); printf ( "\n" ); $conn = cubrid_connect ( "localhost" , 33088 , "demodb" ... ); if (! $conn ) { die( 'Connect Error (' . cubrid_error_code () ...
https://man.plustar.jp/php/function.cubrid-get-server-info.html - [similar]
Oracle Database の暗黙の結果セットを持つ親ステートメント・リソースから次の子ステ... 6124
« oci_free_statement oci_lob_copy » PHP Manual OCI8 関数 Oracle Database の暗黙の結果セットを持つ ... す。 例 例1 ループ内で暗黙の結果セットを取得 <?php $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/pdbo ... rcl' ); if (! $conn ) { $e = oci_error (); trigger_error ( htmlentitie ... QL.RETURN_RESULT(c1); END;' ; $stid = oci_parse ( $conn , $sql ); oci_execute ( $stid ); while (( $stid_c ... H // IN oci_free_statement ( $stid ); oci_close ( $conn ); ?> 例2 子ステートメントのハンドラをそれぞれ取得 ...
https://man.plustar.jp/php/function.oci-get-implicit-resultset.html - [similar]
Oracle データベースに接続する 6095
« oci_commit oci_define_by_name » PHP Manual OCI8 関数 Oracle データベースに接続する oci_connect ... (PHP 5, PHP 7, PHP 8, PECL OCI8 >= 1.1.0) oci_connect — Oracle データベースに接続する 説明 oci_connec ... ( string $username , string $password , ? string $connection_string = null , string $encoding = "" , int ... を向上させるため、 ほとんどのアプリケーションは oci_connect() ではなく、 oci_pconnect() 経由で持続的接続を使 ... ために oci_close() を使用できます。 同一の引数で oci_connect() を呼び出すと、 2回目以降は最初の呼び出しで返さ ...
https://man.plustar.jp/php/function.oci-connect.html - [similar]
Escape special characters in a string for use in an SQL statement 6026
« cubrid_query cubrid_result » PHP Manual CUBRID MySQL 互換関数 Escape special characters in a s ... cape_string ( string $unescaped_string , resource $conn_identifier = ? ): string This function returns the ... unescaped_string The string that is to be escaped. conn_identifier The CUBRID connection. If the connectio ... n identifier is not specified, the last connection opened by cubrid_connect() is assumed. 戻り値 ... 例 例1 cubrid_real_escape_string() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ...
https://man.plustar.jp/php/function.cubrid-real-escape-string.html - [similar]
Sets the CUBRID database parameters 6026
« cubrid_set_autocommit cubrid_set_drop » PHP Manual CUBRID 関数 Sets the CUBRID database parame ... arameters 説明 cubrid_set_db_parameter ( resource $conn_identifier , int $param_type , int $param_value ): ... set by using cubrid_set_autocommit() . パラメータ conn_identifier The CUBRID connection. If the connectio ... r is not specified, the last link opened by cubrid_connect() is assumed. param_type Database parameter typ ... す。 例 例1 cubrid_get_db_parameter() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ...
https://man.plustar.jp/php/function.cubrid-set-db-parameter.html - [similar]
LOB ファイルから、ユーザーが定義したサイズの内容を取得する 5997
« db2_last_insert_id db2_next_result » PHP Manual IBM DB2 関数 LOB ファイルから、ユーザーが定義し ... ; $password = 'ibmdb2' ; /* 接続リソースの取得 */ $conn = db2_connect ( $db , $username , $password ); if ... ( $conn ) { $drop = 'DROP TABLE clob_stream' ; $result = @ ... db2_exec ( $conn , $drop ); $create = 'CREATE TABLE clob_stream (id ... INTEGER, my_clob CLOB)' ; $result = db2_exec ( $conn , $create ); $variable = "" ; $stmt = db2_prepare ...
https://man.plustar.jp/php/function.db2-lob-read.html - [similar]
Oracleとの接続を閉じる 5997
« oci_client_version oci_commit » PHP Manual OCI8 関数 Oracleとの接続を閉じる oci_close (PHP 5, ... Oracleとの接続を閉じる 説明 oci_close ( resource $connection ): ? bool 接続 connection を閉じます。 他のい ... かなるリソースも利用しない、なおかつ oci_connect() または oci_new_connect() で作成された場合、 基 ... リソースを利用できるようになるからです。 パラメータ connection oci_connect() 、 oci_pconnect() あるいは oci ... _new_connect() が返す Oracle 接続 ID。 戻り値 oci8.old_oci_c ...
https://man.plustar.jp/php/function.oci-close.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT