Package com.tsurugidb.iceaxe.sql.type
Class TgClobTempFile
- java.lang.Object
-
- com.tsurugidb.iceaxe.sql.type.TgClobTempFile
-
- All Implemented Interfaces:
TgClob
,IceaxeTimeoutCloseable
,java.lang.AutoCloseable
public class TgClobTempFile extends java.lang.Object implements TgClob
CLOB using temporary file.- Since:
- 1.8.0
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
TgClobTempFile(java.nio.file.Path path, boolean deleteOnExecuteFinished)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
copyTo(java.nio.file.Path destination)
Copy the large object to the file indicated by the given path.java.nio.file.Path
getPath()
get path.boolean
isDeleteOnExecuteFinished()
Whether delete on execute finished.boolean
isTempFile()
Whether temporary file or not.java.io.Reader
openReader()
Returns a reader.java.lang.String
readString()
Reads string.java.lang.String
toString()
-
-
-
Method Detail
-
getPath
public java.nio.file.Path getPath()
Description copied from interface:TgClob
get path.
-
isTempFile
public boolean isTempFile()
Description copied from interface:TgClob
Whether temporary file or not.- Specified by:
isTempFile
in interfaceTgClob
- Returns:
true
when temporary file
-
isDeleteOnExecuteFinished
public boolean isDeleteOnExecuteFinished()
Description copied from interface:TgClob
Whether delete on execute finished.- Specified by:
isDeleteOnExecuteFinished
in interfaceTgClob
- Returns:
true
: delete temporary file on execute finished
-
openReader
public java.io.Reader openReader() throws java.io.IOException
Description copied from interface:TgClob
Returns a reader.- Specified by:
openReader
in interfaceTgClob
- Returns:
- reader
- Throws:
java.io.IOException
- if an I/O error occurs
-
copyTo
public void copyTo(java.nio.file.Path destination) throws java.io.IOException
Description copied from interface:TgClob
Copy the large object to the file indicated by the given path.
-
readString
public java.lang.String readString() throws java.io.IOException
Description copied from interface:TgClob
Reads string.- Specified by:
readString
in interfaceTgClob
- Returns:
- value
- Throws:
java.io.IOException
- if an I/O error occurs
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfaceIceaxeTimeoutCloseable
- Specified by:
close
in interfaceTgClob
- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-