Commit ae2616d 1 parent 369e5e0 commit ae2616d Copy full SHA for ae2616d
File tree 1 file changed +3
-0
lines changed
src/main/java/com/microsoft/sqlserver/jdbc
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ class StreamDone extends StreamPacket {
22
22
* the current command (See Appendix A of TDS spec)
23
23
*/
24
24
static final short CMD_SELECT = 0xC1 ;
25
+ static final short CMD_SELECTINTO = 0xC2 ;
25
26
static final short CMD_INSERT = 0xC3 ;
26
27
static final short CMD_DELETE = 0xC4 ;
27
28
static final short CMD_UPDATE = 0xC5 ;
@@ -224,6 +225,7 @@ final long getUpdateCount() {
224
225
case CMD_DELETE :
225
226
case CMD_UPDATE :
226
227
case CMD_MERGE :
228
+ case CMD_SELECTINTO :
227
229
return updateCountIsValid () ? rowCount : -1 ;
228
230
229
231
default : // DDL assumed
@@ -238,6 +240,7 @@ final boolean cmdIsDMLOrDDL() {
238
240
case CMD_DELETE :
239
241
case CMD_UPDATE :
240
242
case CMD_MERGE :
243
+ case CMD_SELECTINTO :
241
244
242
245
// DDL
243
246
// Lifted from SQL Server 2005 Books Online at:
You can’t perform that action at this time.
0 commit comments