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

Variable Index

 o fixedStatement
 o fsize
 o parameters
 o pCommandValue
 o pCommandWord
 o psize

Constructor Index

 o jdbcMysqlPStmt(jdbcMysqlConnex, String)

Method Index

 o clearParameters()
 o doMe(int, int, String, Object, int)
 o execute()
 o executeQuery()
 o executeUpdate()
 o mExecQuery()
 o mExecUpdate()
 o mxEQ()
 o mxEU()
 o newFixed(String)
 o newParam()
 o prepParse(String)
This method parses the statement being prepared.
 o putParameters()
 o setAsciiStream(int, InputStream, int)
All stream methods are treated the same in MySQL, else see API.
 o setBigDecimal(int, BigDecimal)
See API
 o setBinaryStream(int, InputStream, int)
All stream methods are treated the same in MySQL, else see API.
 o setBoolean(int, boolean)
Until MySQL supports pure booleans (and this driver is updated appropriately) this will be sent as a zero or one.
 o setByte(int, byte)
Saved as a numeric.
 o setBytes(int, byte[])
 o setDate(int, Date)
See the API.
 o setDouble(int, double)
See API.
 o setFloat(int, float)
See API.
 o setInt(int, int)
See API.
 o setLong(int, long)
See the API.
 o setNull(int, int)
See API
 o setObject(int, Object)
Mad scientist at work.
 o setObject(int, Object, int)
Mad scientist at work.
 o setObject(int, Object, int, int)
Mad scientist at work.
 o setShort(int, short)
See API.
 o setString(int, String)
See the API.
 o setTime(int, Time)
See API.
 o setTimestamp(int, Timestamp)
See API.
 o setUnicodeStream(int, InputStream, int)
All stream methods are treated the same in MySQL, else see API.

Variables

 o fixedStatement
 Vector fixedStatement
 o parameters
 Vector parameters
 o fsize
 int fsize
 o psize
 int psize
 o pCommandValue
 int pCommandValue
 o pCommandWord
 String pCommandWord

Constructors

 o jdbcMysqlPStmt
 public jdbcMysqlPStmt(jdbcMysqlConnex cx,
                       String pStatement) throws SQLException

Methods

 o prepParse
 private void prepParse(String pstatement) throws SQLException
This method parses the statement being prepared.

 o newFixed
 private void newFixed(String fs)
 o newParam
 private void newParam()
 o setNull
 public void setNull(int p,
                     int t) throws SQLException
See API

 o 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.

 o setByte
 public void setByte(int p,
                     byte x) throws SQLException
Saved as a numeric.

 o setShort
 public void setShort(int p,
                      short x) throws SQLException
See API.

 o setInt
 public void setInt(int p,
                    int x) throws SQLException
See API.

 o setLong
 public void setLong(int p,
                     long x) throws SQLException
See the API.

 o setFloat
 public void setFloat(int p,
                      float x) throws SQLException
See API.

 o setDouble
 public void setDouble(int p,
                       double x) throws SQLException
See API.

 o setString
 public void setString(int p,
                       String x) throws SQLException
See the API.

 o setBytes
 public void setBytes(int p,
                      byte x[]) throws SQLException
 o setDate
 public void setDate(int p,
                     Date x) throws SQLException
See the API.

 o setTime
 public void setTime(int p,
                     Time x) throws SQLException
See API.

 o setTimestamp
 public void setTimestamp(int p,
                          Timestamp x) throws SQLException
See API.

 o setAsciiStream
 public void setAsciiStream(int p,
                            InputStream x,
                            int l) throws SQLException
All stream methods are treated the same in MySQL, else see API.

 o setBinaryStream
 public void setBinaryStream(int p,
                             InputStream x,
                             int l) throws SQLException
All stream methods are treated the same in MySQL, else see API.

 o setUnicodeStream
 public void setUnicodeStream(int p,
                              InputStream x,
                              int l) throws SQLException
All stream methods are treated the same in MySQL, else see API.

 o setBigDecimal
 public void setBigDecimal(int p,
                           BigDecimal x) throws SQLException
See API

 o 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!

 o 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!

 o 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!

 o clearParameters
 public void clearParameters() throws SQLException
 o doMe
 private void doMe(int cmd,
                   int p,
                   String s,
                   Object o,
                   int x1) throws SQLException
 o executeUpdate
 public int executeUpdate() throws SQLException
 o mExecUpdate
 void mExecUpdate() throws SQLException
 o mxEU
 private void mxEU() throws SQLException
 o executeQuery
 public ResultSet executeQuery() throws SQLException
 o mExecQuery
 ResultSet mExecQuery() throws SQLException
 o mxEQ
 private jdbcMysqlRSet mxEQ() throws SQLException
 o execute
 public boolean execute() throws SQLException
 o putParameters
 void putParameters() throws SQLException

All Packages  Class Hierarchy  This Package  Previous  Next  Index