Sha256: e15f3e36cdbcdc97107b3af8bb7db0df07c43856b5f4f62f1b0aff94ce036f58
Contents?: true
Size: 550 Bytes
Versions: 1
Compression:
Stored size: 550 Bytes
Contents
#ifndef TINYTDS_RESULT_H #define TINYTDS_RESULT_H void init_tinytds_result(); VALUE rb_tinytds_new_result_obj(DBPROCESS *c); typedef struct { DBPROCESS *client; VALUE local_offset; VALUE fields; VALUE results; #ifdef HAVE_RUBY_ENCODING_H rb_encoding *encoding; #endif unsigned int number_of_results; unsigned int number_of_fields; unsigned long number_of_rows; } tinytds_result_wrapper; #define GET_RESULT_WRAPPER(self) \ tinytds_result_wrapper *rwrap; \ Data_Get_Struct(self, tinytds_result_wrapper, rwrap) #endif
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tiny_tds-0.2.0 | ext/tiny_tds/result.h |