Package org.apache.ibatis.jdbc
Class ScriptRunner
java.lang.Object
org.apache.ibatis.jdbc.ScriptRunner
This is an internal testing utility.
You are welcome to use this class for your own purposes,
but if there is some feature/enhancement you need for your own usage,
please make and modify your own copy instead of sending us an enhancement request.
You are welcome to use this class for your own purposes,
but if there is some feature/enhancement you need for your own usage,
please make and modify your own copy instead of sending us an enhancement request.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate boolean
private final Connection
private static final String
private String
private static final Pattern
private PrintWriter
private boolean
private boolean
private static final String
private PrintWriter
private boolean
private boolean
private boolean
private boolean
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate void
private void
checkWarnings
(Statement statement) void
Deprecated.Since 3.5.4, this method is deprecated.private boolean
commandReadyToExecute
(String trimmedLine) private void
private void
executeFullScript
(Reader reader) private void
executeLineByLine
(Reader reader) private void
executeStatement
(String command) private void
handleLine
(StringBuilder command, String line) private boolean
lineIsComment
(String trimmedLine) private void
private void
private void
private void
printResults
(Statement statement, boolean hasResults) private void
void
private void
void
setAutoCommit
(boolean autoCommit) void
setDelimiter
(String delimiter) void
setErrorLogWriter
(PrintWriter errorLogWriter) void
setEscapeProcessing
(boolean escapeProcessing) Sets the escape processing.void
setFullLineDelimiter
(boolean fullLineDelimiter) void
setLogWriter
(PrintWriter logWriter) void
setRemoveCRs
(boolean removeCRs) void
setSendFullScript
(boolean sendFullScript) void
setStopOnError
(boolean stopOnError) void
setThrowWarning
(boolean throwWarning)
-
Field Details
-
LINE_SEPARATOR
-
DEFAULT_DELIMITER
- See Also:
-
DELIMITER_PATTERN
-
connection
-
stopOnError
private boolean stopOnError -
throwWarning
private boolean throwWarning -
autoCommit
private boolean autoCommit -
sendFullScript
private boolean sendFullScript -
removeCRs
private boolean removeCRs -
escapeProcessing
private boolean escapeProcessing -
logWriter
-
errorLogWriter
-
delimiter
-
fullLineDelimiter
private boolean fullLineDelimiter
-
-
Constructor Details
-
ScriptRunner
-
-
Method Details
-
setStopOnError
public void setStopOnError(boolean stopOnError) -
setThrowWarning
public void setThrowWarning(boolean throwWarning) -
setAutoCommit
public void setAutoCommit(boolean autoCommit) -
setSendFullScript
public void setSendFullScript(boolean sendFullScript) -
setRemoveCRs
public void setRemoveCRs(boolean removeCRs) -
setEscapeProcessing
public void setEscapeProcessing(boolean escapeProcessing) Sets the escape processing.- Parameters:
escapeProcessing
- the new escape processing- Since:
- 3.1.1
-
setLogWriter
-
setErrorLogWriter
-
setDelimiter
-
setFullLineDelimiter
public void setFullLineDelimiter(boolean fullLineDelimiter) -
runScript
-
executeFullScript
-
executeLineByLine
-
closeConnection
Deprecated.Since 3.5.4, this method is deprecated. Please close theConnection
outside of this class. -
setAutoCommit
private void setAutoCommit() -
commitConnection
private void commitConnection() -
rollbackConnection
private void rollbackConnection() -
checkForMissingLineTerminator
-
handleLine
- Throws:
SQLException
-
lineIsComment
-
commandReadyToExecute
-
executeStatement
- Throws:
SQLException
-
checkWarnings
- Throws:
SQLException
-
printResults
-
print
-
println
-
printlnError
-