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);
}