SQLite Forum

Performance issues with query parameters vs. static strings
Login
And why are you using named parameters and not just binding by index number? The parser has lookup each parameter name to see if it has a previous reference, which could possibly be quite costly when the number of names gets large.