Package org.h2.command.dml
Class ScriptCommand
- java.lang.Object
-
- org.h2.command.Prepared
-
- org.h2.command.dml.ScriptCommand
-
public class ScriptCommand extends Prepared
This class represents the statement SCRIPT
-
-
Field Summary
Fields Modifier and Type Field Description protected java.io.OutputStreamoutThe output stream.protected java.io.BufferedReaderreaderThe input reader.-
Fields inherited from class org.h2.command.Prepared
create, parameters, prepareAlways, session, sqlStatement, sqlTokens
-
-
Constructor Summary
Constructors Constructor Description ScriptCommand(SessionLocal session)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.io.InputStreamcombineBlob(java.sql.Connection conn, int id)Combine a BLOB.static java.io.ReadercombineClob(java.sql.Connection conn, int id)Combine a CLOB.protected java.lang.StringgetFileName()intgetType()Get the command type as defined in CommandInterfacebooleanisQuery()Check if this object is a query.booleanisTransactional()Check if this command is transactional.booleanneedRecompile()Check if the statement needs to be re-compiled.ResultInterfacequery(long maxrows)Execute the query.ResultInterfacequeryMeta()Get an empty result set containing the metadata.voidsetCharset(java.nio.charset.Charset charset)voidsetCipher(java.lang.String c)voidsetCompressionAlgorithm(java.lang.String algorithm)voidsetData(boolean data)voidsetDrop(boolean drop)voidsetFileNameExpr(Expression file)voidsetLobBlockSize(long blockSize)voidsetPassword(Expression password)voidsetPasswords(boolean passwords)voidsetSchemaNames(java.util.Set<java.lang.String> schemaNames)voidsetSettings(boolean settings)voidsetSimple(boolean simple)voidsetTables(java.util.Collection<Table> tables)voidsetVersion(boolean version)voidsetWithColumns(boolean withColumns)-
Methods inherited from class org.h2.command.Prepared
checkCanceled, checkParameters, collectDependencies, getCurrentRowNumber, getDatabase, getObjectId, getParameters, getPersistedObjectId, getPlanSQL, getPlanSQL, getSession, getSimpleSQL, getSQL, getSQLTokens, invalidateCachedResult, isCacheable, isReadOnly, isRetryable, isWithParamValues, prepare, setCommand, setCurrentRowNumber, setParameterList, setPersistedObjectId, setPrepareAlways, setRow, setSession, setSQL, setWithParamValues, toString, update
-
-
-
-
Constructor Detail
-
ScriptCommand
public ScriptCommand(SessionLocal session)
-
-
Method Detail
-
isQuery
public boolean isQuery()
Description copied from class:PreparedCheck if this object is a query.
-
setSchemaNames
public void setSchemaNames(java.util.Set<java.lang.String> schemaNames)
-
setTables
public void setTables(java.util.Collection<Table> tables)
-
setData
public void setData(boolean data)
-
setPasswords
public void setPasswords(boolean passwords)
-
setSettings
public void setSettings(boolean settings)
-
setLobBlockSize
public void setLobBlockSize(long blockSize)
-
setDrop
public void setDrop(boolean drop)
-
queryMeta
public ResultInterface queryMeta()
Description copied from class:PreparedGet an empty result set containing the metadata.
-
query
public ResultInterface query(long maxrows)
Description copied from class:PreparedExecute the query.
-
combineBlob
public static java.io.InputStream combineBlob(java.sql.Connection conn, int id) throws java.sql.SQLExceptionCombine a BLOB. This method is called from the script. When calling with id -1, the file is deleted.- Parameters:
conn- a connectionid- the lob id- Returns:
- a stream for the combined data
- Throws:
java.sql.SQLException- on failure
-
combineClob
public static java.io.Reader combineClob(java.sql.Connection conn, int id) throws java.sql.SQLExceptionCombine a CLOB. This method is called from the script.- Parameters:
conn- a connectionid- the lob id- Returns:
- a reader for the combined data
- Throws:
java.sql.SQLException- on failure
-
setSimple
public void setSimple(boolean simple)
-
setWithColumns
public void setWithColumns(boolean withColumns)
-
setVersion
public void setVersion(boolean version)
-
setCharset
public void setCharset(java.nio.charset.Charset charset)
-
getType
public int getType()
Description copied from class:PreparedGet the command type as defined in CommandInterface
-
setCipher
public void setCipher(java.lang.String c)
-
setPassword
public void setPassword(Expression password)
-
setFileNameExpr
public void setFileNameExpr(Expression file)
-
getFileName
protected java.lang.String getFileName()
-
isTransactional
public boolean isTransactional()
Description copied from class:PreparedCheck if this command is transactional. If it is not, then it forces the current transaction to commit.- Specified by:
isTransactionalin classPrepared- Returns:
- true if it is
-
needRecompile
public boolean needRecompile()
Description copied from class:PreparedCheck if the statement needs to be re-compiled.- Overrides:
needRecompilein classPrepared- Returns:
- true if it must
-
setCompressionAlgorithm
public void setCompressionAlgorithm(java.lang.String algorithm)
-
-