Guest User

Untitled

a guest
Jan 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public static class SQLiteConnectionExtensions
  2. {
  3. public static SQLiteCommand CreateStoredProcedureCommand(this SQLiteConnection connection, string sql)
  4. {
  5. var command = new SQLiteCommand(connection);
  6. command.CommandType = System.Data.CommandType.Text;
  7. command.CommandText = sql;
  8.  
  9. return command;
  10. }
  11. }
Add Comment
Please, Sign In to add comment