public override IConnectionManager Clone()
        {
            SQLiteConnectionManager clone = new SQLiteConnectionManager((SQLiteConnectionString)ConnectionString)
            {
                MaxLoginAttempts = this.MaxLoginAttempts
            };

            return(clone);
        }
Esempio n. 2
0
        public override object Clone()
        {
            SQLiteConnectionManager clone = new SQLiteConnectionManager((SQLiteConnectionString)ConnectionString)
            {
                MaxLoginAttempts = this.MaxLoginAttempts,
                ModifyDBSettings = this.ModifyDBSettings
            };

            return(clone);
        }
Esempio n. 3
0
        public override IConnectionManager Clone()
        {
            if (LeaveOpen)
            {
                return(this);
            }
            SQLiteConnectionManager clone = new SQLiteConnectionManager((SQLiteConnectionString)ConnectionString)
            {
                MaxLoginAttempts = this.MaxLoginAttempts,
                ModifyDBSettings = this.ModifyDBSettings
            };

            return(clone);
        }