Beispiel #1
0
        internal ValuesExpressionImpl(PostgreSQLVendorImpl vendor, ImmutableArray <ImmutableArray <ValueExpression> > values)
            : base(vendor)
        {
            values.ValidateNotEmpty(nameof(values));

            this._values = values;
        }
Beispiel #2
0
 internal PgSQLManipulationFactoryImpl(PostgreSQLVendorImpl vendor)
     : base(vendor)
 {
 }
Beispiel #3
0
 internal PgSQLSpecificFactoryImpl(PostgreSQLVendorImpl vendor)
     : base(vendor)
 {
     this._text = new SQLDTTextImpl(vendor);
 }
Beispiel #4
0
 internal PgSQLInsertStatementBuilderImpl(PostgreSQLVendorImpl vendor)
     : base(vendor)
 {
 }
Beispiel #5
0
 internal PgSQLDropTableOrViewStatementImpl(PostgreSQLVendorImpl vendor, DropBehaviour db, ObjectType whatToDrop, TableNameDirect table, Boolean useIfExists)
     : base(vendor, db, whatToDrop, table)
 {
     this._useIfExists = useIfExists;
 }
Beispiel #6
0
 internal SQLDTTextImpl(PostgreSQLVendorImpl vendor)
     : base(vendor)
 {
 }
Beispiel #7
0
 internal PgSQLInsertStatementImpl(PostgreSQLVendorImpl vendor, TableNameDirect table, ColumnSource columnSource, SelectColumnClause returningClause)
     : base(vendor, table, columnSource)
 {
     this._returning = returningClause;
 }
Beispiel #8
0
 internal ColumnNameListExpressionImpl(PostgreSQLVendorImpl vendor, ImmutableArray <String> names)
     : base(vendor, names)
 {
 }