-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Hi , Thanks for creating the only go lib for Sybase.
Just wanted to check if we have the feature of doing batch select and batch insert .
For Ex in Java I can control the fetch size while doing select which can return million records:
DataSource iq;
Connection iqConnection = iq.getConnection();
PreparedStatement stmnt = iqConnection.prepareStatement(selectQuery);
stmnt.setFetchDirection(ResultSet.FETCH_FORWARD);
stmnt.setFetchSize(batchSize); // 10000
ResultSet result = stmnt.executeQuery()
Similarly for doing batch insert.
Is this something which is already present(I couldn't find it) or is it something in your road map?
Many Thanks
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed