Exemplo n.º 1
0
		protected AbstractSchema (AbstractSchema schema)
		{
			if (schema == null)
				throw new ArgumentNullException ("schema");
			
			this.provider = schema.provider;
			this.name = schema.name;
			this.ownerName = schema.ownerName;
			this.comment = schema.comment;
			this.definition = schema.definition;
			this.schema = schema.schema;
		}
Exemplo n.º 2
0
        protected AbstractSchema(AbstractSchema schema)
        {
            if (schema == null)
            {
                throw new ArgumentNullException("schema");
            }

            this.provider   = schema.provider;
            this.name       = schema.name;
            this.ownerName  = schema.ownerName;
            this.comment    = schema.comment;
            this.definition = schema.definition;
            this.schema     = schema.schema;
        }
Exemplo n.º 3
0
		public NpgsqlTablespace(AbstractSchema schema):base(schema)
		{
			oid = ((NpgsqlTablespace)schema).Oid;
			name = schema.Name;
		}