PHP 和 SQLite 3,多个返回行
我在读取从 SQLite 3 数据库返回的多行时遇到问题。 我之前测试过我的查询,我知道结果应该是什么。但我似乎无法弄清楚如何读取从基于 PHP 的网页上的查询返回的这些不同的行/行。 我搜索了网络,包括 stackoverflew 但我似乎找不到这个问题的答案:/ 任何帮助都会很棒!
问候
这就是我在 php 页面上获取多行的方法:
$ID[$i] = $dbase->querySingle("SELECT rowid FROM rules WHERE parameter".$i." = '$Model'");
I have a problem reading out multiple rows that get returned from an SQLite 3 database.
I tested my querys before and i know what the result should be. But i cant seem to figure out how to read these different lines/rows that get returned from this query on a PHP based webpage.
I searched the web, including stackoverflew but i can't seem to find an anwser to this question :/
Any help would be great!
Regards
P.S. this is how i fetch my the multiple rows on my php page:
$ID[$i] = $dbase->querySingle("SELECT rowid FROM rules WHERE parameter".$i." = '$Model'");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 PHP 中有这个:
它在这里工作。
希望它可以帮助你!
I have this in PHP:
It works here.
Hope it can help you !