update : 2015.11.03
php.shukuma.com검색:
|
fbsql_query(PHP 4 >= 4.0.6, PHP 5, PHP 7) fbsql_query — Send a FrontBase query 설명
resource fbsql_query
( string
$query
[, resource $link_identifier
[, int $batch_size
]] )
Sends a If the query succeeds, you can call fbsql_num_rows() to find out how many rows were returned for a SELECT statement or fbsql_affected_rows() to find out how many rows were affected by a DELETE, INSERT, REPLACE, or UPDATE statement. 인수
반환값
fbsql_query() returns For SELECT statements, fbsql_query() returns a new result identifier that you can pass to fbsql_result().
fbsql_query() will also fail and return 예제
The following query is syntactically invalid, so
fbsql_query() fails and returns Example #1 fbsql_query() example
<?php
The following query is semantically invalid if
my_col is not a column in the table
my_tbl, so fbsql_query()
fails and returns Example #2 fbsql_query() example
<?php 참고
|