Skip to content

Commit

Permalink
added toString (#2099)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgreenbird committed Mar 24, 2023
1 parent b0a7c6f commit b3a61dd
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ private void setPreparedStatementHandle(int handle) {
*/
private boolean useBulkCopyForBatchInsert;

/** Returns the prepared statement SQL */
@Override
public String toString() {
return "sp_executesql SQL: " + preparedSQL;
}

/**
* Returns the prepared statement's useBulkCopyForBatchInsert value.
*
Expand Down

0 comments on commit b3a61dd

Please sign in to comment.