Sha256: baea80574d58ecc139acf447a8a03fd9aad66de75243311d2114175673fa27f2

Contents?: true

Size: 528 Bytes

Versions: 1

Compression:

Stored size: 528 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;
  RETCODE return_code;
  VALUE local_offset;
  VALUE fields;
  VALUE rows;
  #ifdef HAVE_RUBY_ENCODING_H
    rb_encoding *encoding;
  #endif
  long 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.1.0 ext/tiny_tds/result.h