From: <da...@br...> - 2002-12-20 06:37:08
|
Update of /home/cvs/libdbi/include/dbi In directory backbeat:/tmp/cvs-serv5325/include/dbi Modified Files: dbi-dev.h Log Message: armand's query-info-before-first-fetch patch (sort of... don't need GETTING_ROWS anymore) Index: dbi-dev.h =================================================================== RCS file: /home/cvs/libdbi/include/dbi/dbi-dev.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- dbi-dev.h 3 Dec 2002 08:25:33 -0000 1.24 +++ dbi-dev.h 20 Dec 2002 06:36:35 -0000 1.25 @@ -67,7 +67,7 @@ unsigned short *field_types; unsigned long *field_attribs; - enum { NOTHING_RETURNED, ROWS_RETURNED, GETTING_ROWS } result_state; /* nothing_returned: wasn't a SELECT query. returns_rows: select, but no rows fetched yet. getting_rows: select, at least one row has been fetched */ + enum { NOTHING_RETURNED, ROWS_RETURNED } result_state; dbi_row_t **rows; /* array of filled rows, elements set to NULL if not fetched yet */ unsigned long long currowidx; } dbi_result_t; |