freebsd-ports/databases/unixODBC/files/patch-DataManager::SQLMoreResults.c
Kirill Ponomarev 63dc6098d9 - Fix a bug in 2.2.7 that will send a statement to the
incorrect state if SQLMoreResults is used

PR:		61421
Submitted by:	Ports Fury
2004-01-16 14:01:40 +00:00

11 lines
367 B
C

--- DriverManager/SQLMoreResults.c.orig Fri Oct 31 03:20:46 2003
+++ DriverManager/SQLMoreResults.c Tue Jan 13 23:25:00 2004
@@ -262,7 +262,7 @@
* We don't know for sure
*/
statement -> hascols = 0;
- statement -> state = STATE_S4;
+ statement -> state = STATE_S5;
#endif
}
else if ( ret == SQL_STILL_EXECUTING )