mysql 返回影响行数_PHP 返回语句执行后受影响的行数

用户评论:

pluueer at hotmail dot com (2010-04-20 02:51:05)

If you want to return te number of rows without fetching all data it might by more efficient to use this code (correct me if I'm wrong):

$sql_query = 'SELECT COUNT(*) AS NUMBER_OF_ROWS FROM (' . $your_query . ')';

$stmt= oci_parse($conn, $sql_query);

oci_define_by_name($stmt, 'NUMBER_OF_ROWS', $number_of_rows);

oci_execute($stmt);

oci_fetch($stmt);

echo $number_of_rows;

sontung2603 at yahoo dot com (2006-02-17 02:35:05)

hello,

here'is an example who works:

$connexion = ("name_bd","pass_db"); //set up connexion on database

$query="select * from order "; // query for the test

$parse = ociparse($connexion,$query); // parse query

ociexecute($pase); // execute the query on server (on temporary memory)

ocifetchstatement($pase,$tab_result); // the result will be fetched in the table $tab_result

echo ocirowcount($parse); // show the numbers of result

/**** and if you want to posting the results of query ***/

$count = count($tab_result);

for($i=0;$i<=$count;$i++)

{

echo $tab_result[$i]."
";

}

you can also do it with the function ociresult():

while(ocifetch($parse))

{

echo ociresult($parse,"[capital letter of the name of feild that you want to show on naviator]");

}

Attention : all of name of tables on oracle database are in capital letter when you use an other application for connect to it.

example :

to select the field no_client on table client, on your script of posting, you should write :

echo ociresult($parse,"NO_CLIENT");

not :

echo ociresult($parse,"no_client");

//end

Enjoy

justin at flakmag dot com (2000-08-26 18:59:46)

It appears the easiest workaround if you want to get numrows without moving to the end of the result set is to use:

numrows = OCIFetchStatement(...);

OCIExecute(...);

So that the execute re-executes the query. It's horribly inefficient to query twice, but it works.

batti at digito dot com (2000-02-16 08:52:50)

this function can be used with select statement, and also return affected number of rows.

But remember this, use this after fetch statement.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值