public class ScriptReader
extends java.lang.Object
implements java.io.Closeable
| Constructor and Description |
|---|
ScriptReader(java.io.Reader reader)
Create a new SQL script reader from the given reader
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close the underlying reader.
|
boolean |
isBlockRemark()
If currently inside a remark, this method tells if it is a block comment
(true) or single line comment (false)
|
boolean |
isInsideRemark()
Check if this is the last statement, and if the single line or block
comment is not finished yet.
|
java.lang.String |
readStatement()
Read a statement from the reader.
|
void |
setSkipRemarks(boolean skipRemarks)
If comments should be skipped completely by this reader.
|
public ScriptReader(java.io.Reader reader)
reader - the readerpublic void close()
close in interface java.io.Closeableclose in interface java.lang.AutoCloseablepublic java.lang.String readStatement()
public boolean isInsideRemark()
public boolean isBlockRemark()
public void setSkipRemarks(boolean skipRemarks)
skipRemarks - true if comments should be skipped