Reputation: 35233
I am converting my php code for MySQL to SQLite. I am new to SQLite. Kindly help me convert this portion.
if (mysqli_fetch_row($result)== NULL){
echo "Inserting new record <br />";
$stmt = mysqli_prepare($con,"INSERT INTO received_queries VALUES (?,?,?,?)");
mysqli_stmt_bind_param($stmt,'sssi', $qid, $sender_screen_name, $text,$val);
mysqli_stmt_execute($stmt);
mysqli_stmt_close($stmt);
}
Upvotes: 0
Views: 500
Reputation: 592
When you are using PDO, you can use something like this:
if (!$result->fetch (PDO::FETCH_NUM))
{
echo 'Inserting new record <br/>';
$statement = $database->prepare ('INSERT INTO received_queries VALUES (?, ? ,? ,?)');
$statement->execute (array ($qid, $sender_screen_name, $text, $val));
}
Upvotes: 1