検索

phrase: max: clip:
target: order:
Results of 211 - 220 of about 555 for query (0.016 sec.)
データベース更新の自動コミットをオンまたはオフにする 3776
« mysqli::$affected_rows mysqli::begin_transaction » PHP Manual mysqli データベース更新の自動コミ ... e engine has to support transactions */ $mysqli -> query ( "CREATE TABLE IF NOT EXISTS language ( Code text ... sqli -> autocommit ( false ); $result = $mysqli -> query ( "SELECT @@autocommit" ); $row = $result -> fetch ... d 2 rows in the database\n" ; $result = $mysqli -> query ( "SELECT @@autocommit" ); $row = $result -> fetch ... table engine has to support transactions */ mysqli_query ( $mysqli , "CREATE TABLE IF NOT EXISTS language ( ...
https://man.plustar.jp/php/mysqli.autocommit.html - [similar]
Begins a database transaction 3753
« SQLSRV 関数 sqlsrv_cancel » PHP Manual SQLSRV 関数 Begins a database transaction sqlsrv_begin_ ... $productId = 100 ; /* Set up and execute the first query. */ $sql1 = "INSERT INTO OrdersTable (ID, Quantity ... y( $orderId , $qty , $productId ); $stmt1 = sqlsrv_query ( $conn , $sql1 , $params1 ); /* Set up and execut ... e the second query. */ $sql2 = "UPDATE InventoryTable SET Quantity = ... ams2 = array( $qty , $productId ); $stmt2 = sqlsrv_query ( $conn , $sql2 , $params2 ); /* If both queries w ...
https://man.plustar.jp/php/function.sqlsrv-begin-transaction.html - [similar]
Commits a transaction that was begun with sqlsrv_begin_transaction 3753
« sqlsrv_close sqlsrv_configure » PHP Manual SQLSRV 関数 Commits a transaction that was begun wi ... $productId = 100 ; /* Set up and execute the first query. */ $sql1 = "INSERT INTO OrdersTable (ID, Quantity ... y( $orderId , $qty , $productId ); $stmt1 = sqlsrv_query ( $conn , $sql1 , $params1 ); /* Set up and execut ... e the second query. */ $sql2 = "UPDATE InventoryTable SET Quantity = ... ams2 = array( $qty , $productId ); $stmt2 = sqlsrv_query ( $conn , $sql2 , $params2 ); /* If both queries w ...
https://man.plustar.jp/php/function.sqlsrv-commit.html - [similar]
SQLクエリを実行する 3753
« Session::setSavepoint Session::startTransaction » PHP Manual mysql_xdevapi\Session SQLクエリを ... る 説明 public mysql_xdevapi\Session::sql ( string $query ): mysql_xdevapi\SqlStatement ネイティブなSQLステー ... には、 execute メソッドを使ってください。 パラメータ query 実行するSQLステートメント 戻り値 SqlStatement オブ ... ession , xdevapi , ステートメント , SqlStatement , query , string , パラメータ , メソッド , execute ...
https://man.plustar.jp/php/mysql-xdevapi-session.sql.html - [similar]
プリペアドクエリのパラメータに関する情報を返す 3730
« ibase_num_params ibase_pconnect » PHP Manual Firebird/InterBase 関数 プリペアドクエリのパラメー ... に関する情報を返す 説明 ibase_param_info ( resource $query , int $param_number ): array クエリが準備された後に ... ラメータについての情報を配列で返します。 パラメータ query InterBase プリペアドクエリのハンドル。 param_numbe ... 情報 , ibase , param , info , 配列 , num , params , query ...
https://man.plustar.jp/php/function.ibase-param-info.html - [similar]
指定したフィールドが含まれるテーブルの名前を取得する 3730
« mysql_field_seek mysql_field_type » PHP Manual MySQL 関数 指定したフィールドが含まれるテーブル ... esult 評価された結果 リソース 。この結果は、 mysql_query() のコールにより得られたものです。 field_offset 数 ... を返します。 例 例1 mysql_field_table() の例 <?php $query = "SELECT account.*, country.* FROM account, count ... .id" ; // 結果を DB から取得します $result = mysql_query ( $query ); // テーブル名とフィールド名を一覧表示し ...
https://man.plustar.jp/php/function.mysql-field-table.html - [similar]
クエリ結果のステータスを取得する 3730
« pg_result_seek pg_select » PHP Manual PostgreSQL 関数 クエリ結果のステータスを取得する pg_resu ... るコマンド補完タグを返します。 パラメータ result pg_query() 、 pg_query_params() や (様々な関数がありますが、 ... れた場合の戻り値は 以下のいずれかです。 PGSQL_EMPTY_QUERY 、 PGSQL_COMMAND_OK 、 PGSQL_TUPLES_OK 、 PGSQL_CO ... name=publisher" ); // COPY を実行する $result = pg_query ( $conn , "COPY authors FROM STDIN;" ); // 結果ステ ...
https://man.plustar.jp/php/function.pg-result-status.html - [similar]
URLを組み立てる 3730
« Yaf_Route_Rewrite Yaf_Route_Rewrite::__construct » PHP Manual Yaf_Route_Rewrite URLを組み立てる ... Yaf_Route_Rewrite::assemble ( array $info , array $query = ? ): string URLを組み立てます。 パラメータ info ... キーワード: Yaf , Route , assemble , array , info , query , string , tkey , construct , public ...
https://man.plustar.jp/php/yaf-route-rewrite.assemble.html - [similar]
数値添字の配列として行を得る 3707
« pg_fetch_result pg_field_is_null » PHP Manual PostgreSQL 関数 数値添字の配列として行を得る pg_ ... に PHPの null 値を設定します。 パラメータ result pg_query() 、 pg_query_params() や (様々な関数がありますが、 ... echo "An error occurred.\n" ; exit; } $result = pg_query ( $conn , "SELECT author, email FROM authors" ); i ... ail: $row [ 1 ] " ; echo "<br />\n" ; } ?> 参考 pg_query() - クエリを実行する pg_fetch_array() - 行を配列と ...
https://man.plustar.jp/php/function.pg-fetch-row.html - [similar]
行を配列として返す 3707
« sqlsrv_execute sqlsrv_fetch_object » PHP Manual SQLSRV 関数 行を配列として返す sqlsrv_fetch_ar ... (デフォルト)を選択できます。 パラメータ stmt sqlsrv_query あるいは sqlsrv_prepare が返すステートメントリソー ... rstName, LastName FROM SomeTable" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === false ) { die( pri ... rstName, LastName FROM SomeTable" ; $stmt = sqlsrv_query ( $conn , $sql ); if( $stmt === false ) { die( pri ... nnection to a Microsoft SQL Server database sqlsrv_query() - Prepares and executes a query sqlsrv_errors() ...
https://man.plustar.jp/php/function.sqlsrv-fetch-array.html - [similar]