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

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