Sha256: 21cf091198a304f9263a92145e2cc1faeb2167e67b1f08480ac3ab1880ef2d6d
Contents?: true
Size: 503 Bytes
Versions: 13
Compression:
Stored size: 503 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); typedef struct { VALUE fields; VALUE rows; VALUE client; VALUE encoding; unsigned int numberOfFields; unsigned long numberOfRows; unsigned long lastRowProcessed; char is_streaming; char streamingComplete; char resultFreed; MYSQL_RES *result; mysql_client_wrapper *client_wrapper; } mysql2_result_wrapper; #endif
Version data entries
13 entries across 13 versions & 2 rubygems