コード例 #1
0
ファイル: FbConnection.cs プロジェクト: retahc/old-code
        public DataTable GetDbSchemaTable(FbDbSchemaType schema, object[] restrictions)
        {
            if (this.state == ConnectionState.Closed)
            {
                throw new InvalidOperationException("The conneciton is closed.");
            }

            return(innerConnection.GetSchema(schema.ToString(), restrictions));
        }