All Packages Class Hierarchy This Package Previous Next Index
Class twz1.jdbc.mysql.jdbcMysqlPStmt
java.lang.Object
|
+----twz1.jdbc.mysql.jdbcMysqlStmt
|
+----twz1.jdbc.mysql.jdbcMysqlPStmt
- public final class jdbcMysqlPStmt
- extends jdbcMysqlStmt
- implements PreparedStatement
-
fixedStatement
-
-
fsize
-
-
parameters
-
-
pCommandValue
-
-
pCommandWord
-
-
psize
-
-
jdbcMysqlPStmt(jdbcMysqlConnex, String)
-
-
clearParameters()
-
-
doMe(int, int, String, Object, int)
-
-
execute()
-
-
executeQuery()
-
-
executeUpdate()
-
-
mExecQuery()
-
-
mExecUpdate()
-
-
mxEQ()
-
-
mxEU()
-
-
newFixed(String)
-
-
newParam()
-
-
prepParse(String)
- This method parses the statement being prepared.
-
putParameters()
-
-
setAsciiStream(int, InputStream, int)
- All stream methods are treated the same in MySQL, else see API.
-
setBigDecimal(int, BigDecimal)
- See API
-
setBinaryStream(int, InputStream, int)
- All stream methods are treated the same in MySQL, else see API.
-
setBoolean(int, boolean)
- Until MySQL supports pure booleans (and this driver is updated
appropriately) this will be sent as a zero or one.
-
setByte(int, byte)
- Saved as a numeric.
-
setBytes(int, byte[])
-
-
setDate(int, Date)
- See the API.
-
setDouble(int, double)
- See API.
-
setFloat(int, float)
- See API.
-
setInt(int, int)
- See API.
-
setLong(int, long)
- See the API.
-
setNull(int, int)
- See API
-
setObject(int, Object)
- Mad scientist at work.
-
setObject(int, Object, int)
- Mad scientist at work.
-
setObject(int, Object, int, int)
- Mad scientist at work.
-
setShort(int, short)
- See API.
-
setString(int, String)
- See the API.
-
setTime(int, Time)
- See API.
-
setTimestamp(int, Timestamp)
- See API.
-
setUnicodeStream(int, InputStream, int)
- All stream methods are treated the same in MySQL, else see API.
fixedStatement
Vector fixedStatement
parameters
Vector parameters
fsize
int fsize
psize
int psize
pCommandValue
int pCommandValue
pCommandWord
String pCommandWord
jdbcMysqlPStmt
public jdbcMysqlPStmt(jdbcMysqlConnex cx,
String pStatement) throws SQLException
prepParse
private void prepParse(String pstatement) throws SQLException
- This method parses the statement being prepared.
newFixed
private void newFixed(String fs)
newParam
private void newParam()
setNull
public void setNull(int p,
int t) throws SQLException
- See API
setBoolean
public void setBoolean(int p,
boolean x) throws SQLException
- Until MySQL supports pure booleans (and this driver is updated
appropriately) this will be sent as a zero or one.
setByte
public void setByte(int p,
byte x) throws SQLException
- Saved as a numeric.
setShort
public void setShort(int p,
short x) throws SQLException
- See API.
setInt
public void setInt(int p,
int x) throws SQLException
- See API.
setLong
public void setLong(int p,
long x) throws SQLException
- See the API.
setFloat
public void setFloat(int p,
float x) throws SQLException
- See API.
setDouble
public void setDouble(int p,
double x) throws SQLException
- See API.
setString
public void setString(int p,
String x) throws SQLException
- See the API.
setBytes
public void setBytes(int p,
byte x[]) throws SQLException
setDate
public void setDate(int p,
Date x) throws SQLException
- See the API.
setTime
public void setTime(int p,
Time x) throws SQLException
- See API.
setTimestamp
public void setTimestamp(int p,
Timestamp x) throws SQLException
- See API.
setAsciiStream
public void setAsciiStream(int p,
InputStream x,
int l) throws SQLException
- All stream methods are treated the same in MySQL, else see API.
setBinaryStream
public void setBinaryStream(int p,
InputStream x,
int l) throws SQLException
- All stream methods are treated the same in MySQL, else see API.
setUnicodeStream
public void setUnicodeStream(int p,
InputStream x,
int l) throws SQLException
- All stream methods are treated the same in MySQL, else see API.
setBigDecimal
public void setBigDecimal(int p,
BigDecimal x) throws SQLException
- See API
setObject
public void setObject(int p,
Object x,
int t,
int s) throws SQLException
- Mad scientist at work. Attempt at using object serialization
without the slightest hint at what I'm playing at. Ggg..grandpa
Faust would be so proud!
setObject
public void setObject(int p,
Object x,
int t) throws SQLException
- Mad scientist at work. Attempt at using object serialization
without the slightest hint at what I'm playing at. Ggg..grandpa
Faust would be so proud!
setObject
public void setObject(int p,
Object x) throws SQLException
- Mad scientist at work. Attempt at using object serialization
without the slightest hint at what I'm playing at. Ggg..grandpa
Faust would be so proud!
clearParameters
public void clearParameters() throws SQLException
doMe
private void doMe(int cmd,
int p,
String s,
Object o,
int x1) throws SQLException
executeUpdate
public int executeUpdate() throws SQLException
mExecUpdate
void mExecUpdate() throws SQLException
mxEU
private void mxEU() throws SQLException
executeQuery
public ResultSet executeQuery() throws SQLException
mExecQuery
ResultSet mExecQuery() throws SQLException
mxEQ
private jdbcMysqlRSet mxEQ() throws SQLException
execute
public boolean execute() throws SQLException
putParameters
void putParameters() throws SQLException
All Packages Class Hierarchy This Package Previous Next Index