検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 270 for conn (0.019 sec.)
文からのフィールド名を返す 4637
« oci_field_is_null oci_field_precision » PHP Manual OCI8 関数 文からのフィールド名を返す oci_fi ... ol varchar2(1), // clob_col CLOB, date_col DATE); $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); ... if (! $conn ) { $m = oci_error (); trigger_error ( htmlentitie ... essage' ]), E_USER_ERROR ); } $stid = oci_parse ( $conn , "SELECT * FROM mytab" ); oci_execute ( $stid , O ... OL DATE oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP バージョン 5.0.0 以前では、代 ...
https://man.plustar.jp/php/function.oci-field-name.html - [similar]
フィールドの精度を問い合わせる 4637
« oci_field_name oci_field_scale » PHP Manual OCI8 関数 フィールドの精度を問い合わせる oci_field ... NUMBER, c2 FLOAT, c3 NUMBER(4), c4 NUMBER(5,3)); $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); ... if (! $conn ) { $m = oci_error (); trigger_error ( htmlentitie ... essage' ]), E_USER_ERROR ); } $stid = oci_parse ( $conn , "SELECT * FROM mytab" ); oci_execute ( $stid , O ... C4 5 3 oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP バージョン 5.0.0 以前では、代 ...
https://man.plustar.jp/php/function.oci-field-precision.html - [similar]
フィールドの桁数を問い合わせる 4637
« oci_field_precision oci_field_size » PHP Manual OCI8 関数 フィールドの桁数を問い合わせる oci_f ... NUMBER, c2 FLOAT, c3 NUMBER(4), c4 NUMBER(5,3)); $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); ... if (! $conn ) { $m = oci_error (); trigger_error ( htmlentitie ... essage' ]), E_USER_ERROR ); } $stid = oci_parse ( $conn , "SELECT * FROM mytab" ); oci_execute ( $stid , O ... C4 5 3 oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP バージョン 5.0.0 以前では、代 ...
https://man.plustar.jp/php/function.oci-field-scale.html - [similar]
Oracle におけるフィールドの型を問い合わせる 4637
« oci_field_size oci_field_type » PHP Manual OCI8 関数 Oracle におけるフィールドの型を問い合わせ ... 2_col varchar2(1), clob_col CLOB, date_col DATE); $conn = oci_connect ( "hr" , "hrpwd" , "localhost/XE" ); ... if (! $conn ) { $m = oci_error (); trigger_error ( htmlentitie ... essage' ]), E_USER_ERROR ); } $stid = oci_parse ( $conn , 'select * from mytab' ); oci_execute ( $stid , O ... ype: 12 oci_free_statement ( $stid ); oci_close ( $conn ); ?> 注意 注意 : PHP バージョン 5.0.0 以前では、代 ...
https://man.plustar.jp/php/function.oci-field-type-raw.html - [similar]
SQL NOTIFY メッセージを取得する 4637
« pg_free_result pg_get_pid » PHP Manual PostgreSQL 関数 SQL NOTIFY メッセージを取得する pg_get_ ... FY メッセージを取得する 説明 pg_get_notify ( PgSql\Connection $connection , int $mode = PGSQL_ASSOC ): arr ... SQL コマンドを発行する必要があります。 パラメータ connection PgSql\Connection クラスのインスタンス。 mode ... false を返します。 変更履歴 バージョン 説明 8.1.0 connection は、 PgSql\Connection クラスのインスタンスを ... ました。 例 例1 PostgreSQL NOTIFY メッセージ <?php $conn = pg_pconnect ( "dbname=publisher" ); if (! $conn ...
https://man.plustar.jp/php/function.pg-get-notify.html - [similar]
Bind variables to a prepared statement as parameters 4608
« CUBRID 関数 cubrid_close_prepare » PHP Manual CUBRID 関数 Bind variables to a prepared stateme ... types support. 例 例1 cubrid_bind() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... , "dba" ); $result = cubrid_execute ( $conn , "SELECT code FROM event WHERE sports='Basketball ... request ( $result ); $game_req = cubrid_prepare ( $conn , "SELECT athlete_code FROM game WHERE host_year=1 ... , CUBRID_NUM )) { $athlete_req = cubrid_prepare ( $conn , "SELECT name FROM athlete WHERE code=? AND natio ...
https://man.plustar.jp/php/function.cubrid-bind.html - [similar]
Close a database connection 4608
« cubrid_current_oid cubrid_drop » PHP Manual CUBRID 関数 Close a database connection cubrid_dis ... connect (PECL CUBRID >= 8.3.0) cubrid_disconnect — Close a database connection 説明 cubrid_disco ... nnect ( resource $conn_identifier = ? ): bool The cubrid_disconnect() fun ... ction closes the connection handle and disconnects from server. If any r ... QL compatible function cubrid_close() . パラメータ conn_identifier Connection identifier. 戻り値 成功した場 ...
https://man.plustar.jp/php/function.cubrid-disconnect.html - [similar]
Get error code for the most recent function call 4608
« cubrid_error_code_facility cubrid_error_msg » PHP Manual CUBRID 関数 Get error code for the mo ... ccurred. 例 例1 cubrid_error_code() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_prepare ( $conn , "SELECT * FROM code WHERE s_name=?" ); $req = @ ... rid_error_code (), cubrid_error_msg ()); cubrid_disconnect ( $conn ); exit; } ?> 上の例の出力は以下となりま ...
https://man.plustar.jp/php/function.cubrid-error-code.html - [similar]
Free the memory occupied by the result data 4608
« cubrid_fetch cubrid_get_autocommit » PHP Manual CUBRID 関数 Free the memory occupied by the re ... します。 例 例1 cubrid_free_result() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT * FROM history WHERE host_year=2004 ORDE ... ( $req ); cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 ar ...
https://man.plustar.jp/php/function.cubrid-free-result.html - [similar]
Get the query timeout value of the request 4608
« cubrid_get_db_parameter cubrid_get_server_info » PHP Manual CUBRID 関数 Get the query timeout ... = "localhost" ; $port = 33000 ; $db = "demodb" ; $conn = cubrid_connect_with_url ( "CUBRID: $host : $port ... $db :::?login_timeout=50000&query_timeout=5000&disconnect_on_query_timeout=yes" ); $req = cubrid_prepare ... ( $conn , "SELECT * FROM code" ); $timeout = cubrid_get_qu ... t ( $req ); var_dump ( $timeout ); cubrid_close ( $conn ); ?> 上の例の出力は以下となります。 int(5000) int ...
https://man.plustar.jp/php/function.cubrid-get-query-timeout.html - [similar]