SQLite doesn't support nor accept such a query:
select * from mytable where col = 'val' for update wait 10;
Do you know if there is a way to make SQLite silently skipping the part "for update wait 10" and thus avoid any parsing error. My point is to get Oracle SQL commands barely working against SQLite without having to manually edit the SQL statements.