-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
new go1.8 feature #348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new go1.8 feature #348
Conversation
2 similar comments
I decide NOT to support NextResultSet/HasNextResultSet because the go's multiple result is not same as sqlite's one. |
@mattn is there some workaround for NextResultSet usage? Currently, if I have multiple selects in same Query() it returns only last select rows. |
When I looked at database / sql before, it seemed impossible to implement multiple-resultset for sqlite3 because the behavior of multiple-resultset of database/sql is different from the one expected. But now I looked it, I seems possible to implement. (Seems HasNextResultSet is gone, but not problem) |
Closing #346
On Conn
On "Stmt"
On "Rows"
HasNextResultSet() bool found in RowsNextResultSetNextResultSet() error found in RowsNextResultSet