KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > sql > DataTruncation > Top Examples

  • com.mysql.jdbc.ResultSet
    A ResultSet provides access to a table of data generated by executing a Statement. The table rows are retrieved in sequence. Within a row its column values can be accessed in any order. <P> A ResultSet maintains a cursor pointing to its current row of data. Initially the cursor is positione ...
  • com.mysql.jdbc.MysqlDataTruncation
    MySQL wrapper for DataTruncation until the server can support sending all needed information. @author Mark Matthews @version $Id: MysqlDataTruncation.java,v 1.1.2.1 2005/05/13 18:58:38 mmatthews Exp $
  • com.mysql.jdbc.Statement
    A Statement object is used for executing a static SQL statement and obtaining the results produced by it. <p> Only one ResultSet per Statement can be open at any point in time. Therefore, if the reading of one ResultSet is interleaved with the reading of another, each must have been generat ...
Popular Tags