Package org.datastorm

Examples of org.datastorm.DataStorm


*/
public class DataStormMySql {
public static void main(String[] args) throws Exception {
  Class.forName("com.mysql.jdbc.Driver").newInstance();
  Connection conn = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/mysql", "root", "admin");
  new DataStorm().show(conn);
  new DataStorm().show(conn, "SELECT * FROM help_topic h;");
}
View Full Code Here

TOP

Related Classes of org.datastorm.DataStorm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.