rubyfb 0.5.9 → 0.6

Sign up to get free protection for your applications and to get access to all the features.
data/ext/ResultSet.h CHANGED
@@ -38,21 +38,20 @@
38
38
 
39
39
  /* Type definitions. */
40
40
  typedef struct {
41
- isc_stmt_handle handle;
42
- XSQLDA *output;
43
- int exhausted;
44
41
  long fetched;
45
- short dialect;
46
- short procedure_output_fetch_state;
47
- VALUE transaction;
48
- /*char sql[1000];*/
42
+ short active,
43
+ manage_transaction,
44
+ manage_statement;
49
45
  } ResultsHandle;
50
46
 
51
47
  /* Function prototypes. */
52
- VALUE rb_result_set_new(VALUE, VALUE, VALUE, VALUE, VALUE);
53
- void rb_assign_transaction(VALUE, VALUE);
48
+ VALUE rb_result_set_new(VALUE, VALUE);
54
49
  void resultSetFree(void *);
55
50
  void Init_ResultSet(VALUE);
51
+ short isActiveResultSet(VALUE);
52
+ VALUE yieldResultsRows(VALUE);
53
+ void resultSetManageTransaction(VALUE);
54
+ void resultSetManageStatement(VALUE);
56
55
 
57
56
  #endif /* FIRERUBY_RESULT_SET_H */
58
57