作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
什么时候使用 oci_fetch
比较有利在 oci_fetch_array
? oci_fetch_array
返回实际数组,但 oci_fetch
只是将获取的内存存储在其内部缓冲区中的某处。
我应该了解两者之间的性能差异吗?
最佳答案
与 oci_fetch()
,下一个结果行被读入可以被oci_result()
读取的内部缓冲区。 .所以你会像这样打电话:
$st_handle = oci_parse($oci_conn, 'SELECT some_field, another_field FROM some_table');
oci_execute($st_handle);
while(oci_fetch($st_handle)) {
$some_field = oci_result($st_handle, 'some_field');
var_dump($some_field);
$another_field = oci_result($st_handle, 'another_field');
var_dump($another_field);
}
oci_result()
您可以使用
oci_define_by_name()
预定义将加载到内部缓冲区中的变量像这样:
$st_handle = oci_parse($oci_conn, 'SELECT some_field, another_field FROM some_table');
oci_define_by_name($st_handle, 'some_field', $some_field);
oci_define_by_name($st_handle, 'another_field', $another_field);
oci_execute($st_handle);
while(oci_fetch($st_handle)) {
var_dump($some_field);
var_dump($another_field);
}
oci_fetch_array()
的东西更冗长。或
oci_fetch_object()
您不需要显式定义变量来读取结果。
$st_handle = oci_parse($oci_conn, 'SELECT some_field, another_field FROM some_table');
oci_execute($st_handle);
while($row = oci_fetch_array($st_handle, OCI_ASSOC)) {
var_dump($row['some_field']);
var_dump($row['another_field']);
}
关于php - oci_fetch 与 oci_fetch_array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18323547/
什么时候使用 oci_fetch 比较有利在 oci_fetch_array ? oci_fetch_array返回实际数组,但 oci_fetch只是将获取的内存存储在其内部缓冲区中的某处。 我应该
我是一名优秀的程序员,十分优秀!