示例#1
0
        internal ResultSetResponse InternalColumnsRequest(string catalog, string schemaPattern, string tablePattern, string columnPattern)
        {
            Task <ResultSetResponse> tResp = _client.ColumnsRequestAsync(catalog, schemaPattern, tablePattern, columnPattern, this.ConnectionId, this.Options);

            tResp.Wait();

            return(tResp.Result);
        }