Class SqlJetPreparedStatement
java.lang.Object
org.tmatesoft.sqljet.core.internal.lang.SqlJetPreparedStatement
public class SqlJetPreparedStatement
extends java.lang.Object
- Author:
- TMate Software Ltd., Dmitry Stadnik (dtrace@seznam.cz)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
close()
byte[]
getBlobAsArray
(int columnIndex) java.io.InputStream
getBlobAsStream
(int columnIndex) int
getColumnType
(int columnIndex) double
getFloat
(int columnIndex) long
getInteger
(int columnIndex) int
java.lang.String
getText
(int columnIndex) boolean
isNull
(int columnIndex) void
reset()
void
setBlob
(int paramIndex, byte[] value) void
setBlob
(java.lang.String paramName, byte[] value) void
setFloat
(int paramIndex, double value) void
setFloat
(java.lang.String paramName, double value) void
setInteger
(int paramIndex, long value) void
setInteger
(java.lang.String paramName, long value) void
setNull
(int paramIndex) void
setNull
(java.lang.String paramName) void
setText
(int paramIndex, java.lang.String value) void
setText
(java.lang.String paramName, java.lang.String value) boolean
step()
Executes the statement or advances to the next row of the query results.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
SqlJetPreparedStatement
-
-
Method Details
-
close
- Throws:
SqlJetException
-
getParametersCount
- Throws:
SqlJetException
-
setInteger
- Throws:
SqlJetException
-
setFloat
- Throws:
SqlJetException
-
setText
- Throws:
SqlJetException
-
setBlob
- Throws:
SqlJetException
-
setNull
- Throws:
SqlJetException
-
setInteger
- Throws:
SqlJetException
-
setFloat
- Throws:
SqlJetException
-
setText
- Throws:
SqlJetException
-
setBlob
- Throws:
SqlJetException
-
setNull
- Throws:
SqlJetException
-
clearBindings
- Throws:
SqlJetException
-
step
Executes the statement or advances to the next row of the query results.- Throws:
SqlJetException
-
getColumnsCount
- Throws:
SqlJetException
-
getColumnType
- Throws:
SqlJetException
-
getInteger
- Throws:
SqlJetException
-
getFloat
- Throws:
SqlJetException
-
getText
- Throws:
SqlJetException
-
getBlobAsArray
- Throws:
SqlJetException
-
getBlobAsStream
- Throws:
SqlJetException
-
isNull
- Throws:
SqlJetException
-
reset
- Throws:
SqlJetException
-