検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 555 for query (0.035 sec.)
Rolls back a transaction that was begun with sqlsrv_begin_transaction 4013
« sqlsrv_query sqlsrv_rows_affected » PHP Manual SQLSRV 関数 Rolls back a transaction that was b ... $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-rollback.html - [similar]
mysqli_result オブジェクトを構築する 4013
« mysqli_result mysqli_result::$current_field » PHP Manual mysqli_result mysqli_result オブジェク ... sqli_result オブジェクトを構築します。 mysqli_real_query() や mysqli_multi_query() 関数をコールした後に mys ... ect queries return a result set */ $mysqli -> real_query ( "SELECT Name FROM City LIMIT 10" ); $result = ne ... ります。 Select returned 10 rows. 参考 mysqli_multi_query() - データベース上でひとつ以上のクエリを実行する m ... ysqli_real_query() - SQL クエリを実行する mysqli_store_result() - 直 ...
https://man.plustar.jp/php/mysqli-result.construct.html - [similar]
Constructor 4013
« SolrCollapseFunction SolrCollapseFunction::getField » PHP Manual SolrCollapseFunction Construc ... ER_PATH ); $client = new SolrClient ( $options ); $query = new SolrQuery ( '*:*' ); $func = new SolrCollaps ... cy ( SolrCollapseFunction :: NULLPOLICY_EXPAND ); $query -> collapse ( $func ); $queryResponse = $client -> ... query ( $query ); $response = $queryResponse -> getRespo ... nse (); print_r ( $response ); ?> 参考 SolrQuery::collapse() - Collapses the result set to a single ...
https://man.plustar.jp/php/solrcollapsefunction.construct.html - [similar]
与えられた XPath 式を評価し、可能であれば結果を返す 3990
« DOMXPath::__construct DOMXPath::query » PHP Manual DOMXPath 与えられた XPath 式を評価し、可能で ... ; // tbody ノードを基準とした相対クエリとなります $query = 'count(row/entry[. = "en"])' ; $entries = $xpath ... -> evaluate ( $query , $tbody ); echo "There are $entries english books ... なります。 There are 2 english books 参考 DOMXPath::query() - 与えられた XPath 式を評価する 関連キーワード: ... e , 実行 , registerNodeNS , contextNode , ノード , query , 型付け ...
https://man.plustar.jp/php/domxpath.evaluate.html - [similar]
Open a persistent connection to CUBRID server 3990
« cubrid_num_rows cubrid_pconnect » PHP Manual CUBRID 関数 Open a persistent connection to CUBRI ... es> ::= login_timeout=<milli_sec> <properties> ::= query_timeout=<milli_sec> <properties> ::= disconnect_on ... _query_timeout=true|false <alternative_hosts> ::= <standb ... ult value is 0, which means infinite postponement. query_timeout : Timeout value (unit: msec.) for query re ... st. Upon timeout, a message to cancel requesting a query transferred to server is sent. The return value ca ...
https://man.plustar.jp/php/function.cubrid-pconnect-with-url.html - [similar]
結果におけるフィールドの数を得る 3990
« mysql_list_tables mysql_num_rows » PHP Manual MySQL 関数 結果におけるフィールドの数を得る mysq ... esult 評価された結果 リソース 。この結果は、 mysql_query() のコールにより得られたものです。 戻り値 成功した ... 例1 mysql_num_fields() の例 <?php $result = mysql_query ( "SELECT id,email FROM people WHERE id = '42'" ); ... if (! $result ) { echo 'Could not run query: ' . mysql_error (); exit; } /* id,email の 2 つの ... l_select_db() - MySQL データベースを選択する mysql_query() - MySQL クエリを送信する mysql_fetch_field() - 結 ...
https://man.plustar.jp/php/function.mysql-num-fields.html - [similar]
Executes a statement prepared with sqlsrv_prepare 3990
« sqlsrv_errors sqlsrv_fetch_array » PHP Manual SQLSRV 関数 Executes a statement prepared with s ... nts that you plan to execute only once, use sqlsrv_query() . 参考 sqlsrv_prepare() - Prepares a query for e ... xecution sqlsrv_query() - Prepares and executes a query 関連キーワード: ... rv , prepare , prepared , Executes , execute , a , query , values , variables , parameter ...
https://man.plustar.jp/php/function.sqlsrv-execute.html - [similar]
のエイリアス ibase_execute 3967
« fbird_errmsg fbird_fetch_assoc » PHP Manual Firebird/InterBase 関数 のエイリアス ibase_execute ... 関数のエイリアスです。 ibase_execute() . 参考 fbird_query() - のエイリアス ibase_query 関連キーワード: execu ... te , ibase , fbird , 関数 , query , errmsg , fetch , assoc , 参考 , ...
https://man.plustar.jp/php/function.fbird-execute.html - [similar]
単一のフィールドのメタデータを取得する 3967
« mysqli_result::fetch_column mysqli_result::fetch_field » PHP Manual mysqli_result 単一のフィー ... を返します。 パラメータ result 手続き型のみ: mysqli_query() 、 mysqli_store_result() 、 mysqli_use_result() ... iled: %s\n" , mysqli_connect_error ()); exit(); } $query = "SELECT Name, SurfaceArea from Country ORDER BY ... Name LIMIT 5" ; if ( $result = $mysqli -> query ( $query )) { /* カラム 'SurfaceArea' のフィールド ... iled: %s\n" , mysqli_connect_error ()); exit(); } $query = "SELECT Name, SurfaceArea from Country ORDER BY ...
https://man.plustar.jp/php/mysqli-result.fetch-field-direct.html - [similar]
結果セットの次のフィールドを返す 3967
« mysqli_result::fetch_field_direct mysqli_result::fetch_fields » PHP Manual mysqli_result 結果セ ... 得可能です。 パラメータ result 手続き型のみ: mysqli_query() 、 mysqli_store_result() 、 mysqli_use_result() ... iled: %s\n" , mysqli_connect_error ()); exit(); } $query = "SELECT Name, SurfaceArea from Country ORDER BY ... Code LIMIT 5" ; if ( $result = $mysqli -> query ( $query )) { /* すべてのカラムのフィールド情報を取 ... iled: %s\n" , mysqli_connect_error ()); exit(); } $query = "SELECT Name, SurfaceArea from Country ORDER BY ...
https://man.plustar.jp/php/mysqli-result.fetch-field.html - [similar]