Esempio n. 1
0
        public SQLiteCommand()
        {
            _CommandText       = String.Empty;
            _UpdatedRowSource  = UpdateRowSource.Both;
            _Timeout           = 30;
            _ServingDataReader = false;
            _Transaction       = null;

            _Parameters = new SQLiteParameterCollection();
            _Statements = new SQLiteStatementCollection();
        }
Esempio n. 2
0
        public SQLiteCommand()
        {
            _CommandText = String.Empty;
            _UpdatedRowSource = UpdateRowSource.Both;
            _Timeout = 30;
            _ServingDataReader = false;
            _Transaction = null;

            _Parameters = new SQLiteParameterCollection();
            _Statements = new SQLiteStatementCollection();
        }