Пример #1
0
        public UpdateTranslator(ref IDbCommand command)
        {
            this.command = command;
            if (command.GetType().Name == "MySqlCommand")
            {
                IHelper = new MySqlProviderHelper();
            }

            // IHelper = new SQLiteProviderHelper();
        }
Пример #2
0
 public UpdateTranslator(ref IDbCommand cmd)
 {
     IHelper      = new MySqlProviderHelper();
     this.command = cmd;
 }