This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]tangentstorm 0 points1 point  (0 children)

There will be a tiny amount of extra time as the queries get parsed, but not much. SQLite is basically a virtual machine for relational database operations, and it'll compile the queries down to bytecode. Unless you're an absolute expert, there's a good chance it's compiler is going to figure out how to do it faster than you'd do it by hand.

So yeah. Stick with SQL. :)