In my program I'm spending most of my time in this function: System.Data.SQLite!SQLiteStatement.MapParameter
This function is doing string comparisons to map the correct parameter. I do put my SQL command text into a statement and prepare it. I was wondering if there is a way to do so for my parameters also. Obviously parameters vary, so it'd be nice to have a parameterized function? Or is that essentially what a stored procedure is?