検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 270 for conn (0.094 sec.)
指定したカラムの全ての行を配列として取得する 4412
« pg_execute pg_fetch_all » PHP Manual PostgreSQL 関数 指定したカラムの全ての行を配列として取得す ... いました。 例 例1 pg_fetch_all_columns() の例 <?php $conn = pg_pconnect ( "dbname=publisher" ); if (! $conn ... error occurred.\n" ; exit; } $result = pg_query ( $conn , "SELECT title, name, address FROM authors" ); if ...
https://man.plustar.jp/php/function.pg-fetch-all-columns.html - [similar]
Executes a statement prepared with sqlsrv_prepare 4412
« sqlsrv_errors sqlsrv_fetch_array » PHP Manual SQLSRV 関数 Executes a statement prepared with s ... ) . <?php $serverName = "serverName\sqlexpress" ; $connectionInfo = array( "Database" => "dbName" , "UID" ... => "username" , "PWD" => "password" ); $conn = sqlsrv_connect ( $serverName , $connectionInfo ) ... ; if( $conn === false ) { die( print_r ( sqlsrv_errors (), tru ... mt. $qty = 0 ; $id = 0 ; $stmt = sqlsrv_prepare ( $conn , $sql , array( & $qty , & $id )); if( ! $stmt ) { ...
https://man.plustar.jp/php/function.sqlsrv-execute.html - [similar]
Gets field data from the currently selected row 4412
« sqlsrv_get_config sqlsrv_has_rows » PHP Manual SQLSRV 関数 Gets field data from the currently ... ) . <?php $serverName = "serverName\sqlexpress" ; $connectionInfo = array( "Database" => "dbName" , "UID" ... => "username" , "PWD" => "password" ); $conn = sqlsrv_connect ( $serverName , $connectionInfo ) ... ; if( $conn === false ) { die( print_r ( sqlsrv_errors (), tru ... able_1 WHERE ReviewID=1" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === false ) { die( print_r ( s ...
https://man.plustar.jp/php/function.sqlsrv-get-field.html - [similar]
Move the result set cursor to the specified field offset 4383
« cubrid_field_name cubrid_field_table » PHP Manual CUBRID MySQL 互換関数 Move the result set cu ... failure. 例 例1 cubrid_field_seek() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT event_code,athlete_code,nation_code,game ... > type ); cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 ar ...
https://man.plustar.jp/php/function.cubrid-field-seek.html - [similar]
Get auto-commit mode of the connection 4383
« cubrid_free_result cubrid_get_charset » PHP Manual CUBRID 関数 Get auto-commit mode of the conn ... ubrid_get_autocommit — Get auto-commit mode of the connection 説明 cubrid_get_autocommit ( resource $conn_ ... ction is used to get the status of CUBRID database connection auto-commit mode. For CUBRID 8.4.0, auto-com ... by default for transaction management. パラメータ conn_identifier Connection identifier. 戻り値 true , wh ... brid_set_autocommit() - Set autocommit mode of the connection cubrid_commit() - Commit a transaction 関連キ ...
https://man.plustar.jp/php/function.cubrid-get-autocommit.html - [similar]
Move the cursor in the result 4383
« cubrid_lock_write cubrid_next_result » PHP Manual CUBRID 関数 Move the cursor in the result cu ... します。 例 例1 cubrid_move_cursor() example <?php $conn = cubrid_connect ( "127.0.0.1" , 33000 , "demodb" ... , "dba" ); $req = cubrid_execute ( $conn , "SELECT * FROM code" ); cubrid_move_cursor ( $re ... result ); cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 ar ...
https://man.plustar.jp/php/function.cubrid-move-cursor.html - [similar]
Returns error and warning information about the last SQLSRV operation performed 4383
« sqlsrv_connect sqlsrv_execute » PHP Manual SQLSRV 関数 Returns error and warning information a ... ple <?php $serverName = "serverName/sqlexpress" ; $connectionInfo = array( "Database" => "dbName" , "UID" ... => "username" , "PWD" => "password" ); $conn = sqlsrv_connect ( $serverName , $connectionInfo ) ... ; if( $conn === false ) { die( print_r ( sqlsrv_errors (), tru ... of the bad column name. */ $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === false ) { if( ( $errors = ...
https://man.plustar.jp/php/function.sqlsrv-errors.html - [similar]
Makes the next row in a result set available for reading 4383
« sqlsrv_fetch_object sqlsrv_field_metadata » PHP Manual SQLSRV 関数 Makes the next row in a res ... ) . <?php $serverName = "serverName\sqlexpress" ; $connectionInfo = array( "Database" => "dbName" , "UID" ... => "username" , "PWD" => "password" ); $conn = sqlsrv_connect ( $serverName , $connectionInfo ) ... ; if( $conn === false ) { die( print_r ( sqlsrv_errors (), tru ... able_1 WHERE ReviewID=1" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === false ) { die( print_r ( s ...
https://man.plustar.jp/php/function.sqlsrv-fetch.html - [similar]
Fetch a result row as an associative array, a numeric array, or both 4353
« cubrid_error cubrid_fetch_assoc » PHP Manual CUBRID MySQL 互換関数 Fetch a result row as an as ... efault) 例 例1 cubrid_fetch_array() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ... ); $req = cubrid_execute ( $conn , "SELECT name,area,seats,address FROM stadium WHE ... BRID_LOB) cubrid_close_request ( $req ); cubrid_disconnect ( $conn ); ?> 上の例の出力は以下となります。 na ...
https://man.plustar.jp/php/function.cubrid-fetch-array.html - [similar]
数値添字の配列として行を得る 4353
« pg_fetch_result pg_field_is_null » PHP Manual PostgreSQL 関数 数値添字の配列として行を得る pg_ ... 期待していました。 例 例1 pg_fetch_row() の例 <?php $conn = pg_pconnect ( "dbname=publisher" ); if (! $conn ... error occurred.\n" ; exit; } $result = pg_query ( $conn , "SELECT author, email FROM authors" ); if (! $re ...
https://man.plustar.jp/php/function.pg-fetch-row.html - [similar]