Source Code : Using sqlite_current() and sqlite_next()
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/.
Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site
Using sqlite_current() and sqlite_next()
<?php
function my_sqlite_fetch_array($result,$type = SQLITE_BOTH,$decode = true) {
if(!sqlite_next($result)) {
return false;
} else {
return sqlite_current($result, $type, $decode);
}
}
$sqlite = sqlite_open(":memory:");
sqlite_query($sqlite, "CREATE TABLE test(value INTEGER PRIMARY KEY)");
for($count = 0; $count < 5; $count++) {
sqlite_unbuffered_query($sqlite, "INSERT INTO test VALUES(NULL)");
}
$result = sqlite_query($sqlite, "SELECT * FROM test");
while($row = my_sqlite_fetch_array($result)) {
var_dump($row);
}
?>
Thank with us