検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 270 for conn (0.017 sec.)
未解決のデータベーストランザクションをロールバックする 5772
« oci_result oci_server_version » PHP Manual OCI8 関数 未解決のデータベーストランザクションをロー ... ョンをロールバックする 説明 oci_rollback ( resource $connection ): bool Oracle 接続 connection について、 コ ... 貫性やパフォーマンスを考慮したものです。 パラメータ connection oci_connect() 、 oci_pconnect() あるいは oci ... _new_connect() . が返す Oracle 接続 ID。 戻り値 成功した場合 ... ータを追加し、エラーが発生したらロールバックします $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ...
https://man.plustar.jp/php/function.oci-rollback.html - [similar]
Execute a prepared SQL statement 5743
« cubrid_error_msg cubrid_fetch » PHP Manual CUBRID 関数 Execute a prepared SQL statement cubrid ... ared SQL statement 説明 cubrid_execute ( resource $conn_identifier , string $sql , int $option = 0 ): reso ... iven SQL statement. It executes the query by using conn_identifier and SQL, and then returns the request i ... n specify an option, CUBRID_ASYNC only. パラメータ conn_identifier Connection identifier. sql SQL to be ex ... ier, when process is successful and first param is conn_identifier; true , when process is successful and ...
https://man.plustar.jp/php/function.cubrid-execute.html - [similar]
Get the class name using OID 5743
« cubrid_get_charset cubrid_get_client_info » PHP Manual CUBRID 関数 Get the class name using OI ... e using OID 説明 cubrid_get_class_name ( resource $conn_identifier , string $oid ): string The cubrid_get_ ... he system tables, for example db_class. パラメータ conn_identifier Connection identifier. oid OID of the i ... ます. 例 例1 cubrid_get_class_name() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... , "dba" ); $req = cubrid_execute ( $conn , "SELECT * FROM code" , CUBRID_INCLUDE_OID ); $oi ...
https://man.plustar.jp/php/function.cubrid-get-class-name.html - [similar]
Send a CUBRID query 5743
« cubrid_ping cubrid_real_escape_string » PHP Manual CUBRID MySQL 互換関数 Send a CUBRID query c ... uery 説明 cubrid_query ( string $query , resource $conn_identifier = ? ): resource cubrid_query() sends a ... on the server that's associated with the specified conn_identifier . パラメータ query An SQL query Data in ... side the query should be properly escaped . conn_identifier The CUBRID connection. If the connectio ... n identifier is not specified, the last connection opened by cubrid_connect() is assumed. 戻り値 ...
https://man.plustar.jp/php/function.cubrid-query.html - [similar]
Returns information about the client and specified connection 5743
« sqlsrv_cancel sqlsrv_close » PHP Manual SQLSRV 関数 Returns information about the client and s ... pecified connection sqlsrv_client_info (No version information a ... Returns information about the client and specified connection 説明 sqlsrv_client_info ( resource $conn ): ... Returns information about the client and specified connection パラメータ conn The connection about which i ... ple <?php $serverName = "serverName\sqlexpress" ; $connOptions = array( "UID" => "username" , "PWD" => "pa ...
https://man.plustar.jp/php/function.sqlsrv-client-info.html - [similar]
Check whether the instance pointed by OID exists 5615
« cubrid_insert_id cubrid_lob_close » PHP Manual CUBRID 関数 Check whether the instance pointed ... by OID exists 説明 cubrid_is_instance ( resource $conn_identifier , string $oid ): int The cubrid_is_inst ... pointed by the given oid exists or not. パラメータ conn_identifier Connection identifier. oid OID of the i ... f error 例 例1 cubrid_is_instance() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... name='Thorpe Ian'); EOD; $req = cubrid_execute ( $conn , $sql , CUBRID_INCLUDE_OID ); $oid = cubrid_curre ...
https://man.plustar.jp/php/function.cubrid-is-instance.html - [similar]
文の実行で作用された行数を取得する 5615
« oci_num_fields oci_parse » PHP Manual OCI8 関数 文の実行で作用された行数を取得する oci_num_row ... false を返します 例 例1 oci_num_rows() の例 <?php $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); ... if (! $conn ) { $m = oci_error (); trigger_error ( htmlentitie ... essage' ]), E_USER_ERROR ); } $stid = oci_parse ( $conn , "create table emp2 as select * from employees" ) ... oci_free_statement ( $stid ); $stid = oci_parse ( $conn , "delete from emp2" ); oci_execute ( $stid , OCI_ ...
https://man.plustar.jp/php/function.oci-num-rows.html - [similar]
Return an array with the list of all existing CUBRID databases 5586
« cubrid_field_type cubrid_num_fields » PHP Manual CUBRID MySQL 互換関数 Return an array with th ... CUBRID databases 説明 cubrid_list_dbs ( resource $conn_identifier = ? ): array This function returns an a ... list of all existing Cubrid databases. パラメータ conn_identifier The CUBRID connection. 戻り値 An numeri ... n failure. 例 例1 cubrid_list_dbs() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $db_list = cubrid_list_dbs ( $conn ); var_dump ( $db_list ); cubrid_disconnect ( $con ...
https://man.plustar.jp/php/function.cubrid-list-dbs.html - [similar]
MQSeries MQPUT 5557
« mqseries_put1 mqseries_set » PHP Manual mqseries 関数 MQSeries MQPUT mqseries_put (PECL mqseri ... ut — MQSeries MQPUT 説明 mqseries_put ( resource $hConn , resource $hObj , array &$md , array &$pmo , stri ... を事前にオープンしておく必要があります。 パラメータ hConn 接続ハンドル。 このハンドルは、キューマネージャへの ... キューマネージャへの接続をオープンします mqseries_conn ( 'WMQ1' , $conn , $comp_code , $reason ); // これ ... で、$conn がキューマネージャへの接続を指すようになります // ...
https://man.plustar.jp/php/function.mqseries-put.html - [similar]
文を実行する 5557
« oci_error oci_fetch_all » PHP Manual OCI8 関数 文を実行する oci_execute (PHP 5, PHP 7, PHP 8, ... す。 例 例1 oci_execute() での問い合わせの例 <?php $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ... ); $stid = oci_parse ( $conn , 'SELECT * FROM employees' ); oci_execute ( $stid ... 作成します。 // CREATE TABLE MYTABLE (col1 NUMBER); $conn = oci_connect ( 'hr' , 'welcome' , 'localhost/XE' ... ); $stid = oci_parse ( $conn , 'INSERT INTO mytab (col1) VALUES (123)' ); oci_e ...
https://man.plustar.jp/php/function.oci-execute.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT