Sha256: 2b58adbeabc20a92f49e4325afd37c0f518769520edf1b7f88a9c6a6f349c02d

Contents?: true

Size: 706 Bytes

Versions: 4

Compression:

Stored size: 706 Bytes

Contents

#ifndef MYSQL2_RESULT_H
#define MYSQL2_RESULT_H

void init_mysql2_result();
VALUE rb_mysql_result_to_obj(VALUE client, VALUE encoding, VALUE options, MYSQL_RES *r, VALUE statement);

typedef struct {
  VALUE fields;
  VALUE rows;
  VALUE client;
  VALUE encoding;
  VALUE statement;
  unsigned int numberOfFields;
  unsigned long numberOfRows;
  unsigned long lastRowProcessed;
  char is_streaming;
  char streamingComplete;
  char resultFreed;
  MYSQL_RES *result;
  mysql_stmt_wrapper *stmt_wrapper;
  mysql_client_wrapper *client_wrapper;
  /* statement result bind buffers */
  MYSQL_BIND *result_buffers;
  my_bool *is_null;
  my_bool *error;
  unsigned long *length;
} mysql2_result_wrapper;

#endif

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mysql2-0.4.0-x86-mswin32-60 ext/mysql2/result.h
mysql2-0.4.0-x86-mingw32 ext/mysql2/result.h
mysql2-0.4.0-x64-mingw32 ext/mysql2/result.h
mysql2-0.4.0 ext/mysql2/result.h