public __MySQLCommand(string sql, __MySQLConnection c)
        {
            this.c = (__MySQLConnection)(object)c;

            // http://dev.mysql.com/doc/refman/5.0/en/example-auto-increment.html
            // http://www.sqlite.org/autoinc.html


            this.CommandText = sql;


            //this.InternalParameters = new __SQLiteParameterCollection { };

            // 625ms AddParameter { Parameters =  }


            this.Parameters = new __SQLiteParameterCollection {
            };

            //((__DbCommand)this).Parameters = (DbParameterCollection)(object)this.Parameters;
        }
        public __MySQLCommand(string sql, __MySQLConnection c)
        {
            this.c = (__MySQLConnection)(object)c;

            // http://dev.mysql.com/doc/refman/5.0/en/example-auto-increment.html
            // http://www.sqlite.org/autoinc.html


            this.CommandText = sql;


            //this.InternalParameters = new __SQLiteParameterCollection { };

            // 625ms AddParameter { Parameters =  }


            this.Parameters = new __SQLiteParameterCollection { };

            //((__DbCommand)this).Parameters = (DbParameterCollection)(object)this.Parameters;

        }