Since SQLite doesn't support stored procedures, there's no point in implementing this function ... Case in point, if you attempt to execute DeriveParameters() on a SqlCommand that is not a stored procedure, you get this:
SqlCommand DeriveParameters only supports CommandType.StoredProcedure, not CommandType.Text
Now, if you'd like an empty function that just throws a Not Implemented error, then I can easily oblige ...
Robert