Sunday, 17 July 2016

JDBC Statement – Create a table

package net.dharmaraj;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class JDBCStatementCreateExample {

private static final String DB_DRIVER = "com.mysql.jdbc.Driver";
private static final String DB_CONNECTION = "jdbc:mysql://localhost/pkm";
private static final String DB_USER = "root";
private static final String DB_PASSWORD = "";

public static void main(String[] args) {

try {
createDbUserTable();
} catch (Exception e) {
System.out.println(e.getMessage());
}//end of try catch Block

}
private static void createDbUserTable() throws SQLException {
Connection dbConnection = null;
Statement statement = null;

String createTableSQL = "CREATE TABLE DBUSER("
+ "USER_ID INT(5) NOT NULL, "
+ "USERNAME VARCHAR(20) NOT NULL, "
+ "CREATED_BY VARCHAR(20) NOT NULL, "
+ "CREATED_DATE DATE NOT NULL, " + "PRIMARY KEY (USER_ID) "
+ ")";

try {
dbConnection = getDBConnection();
statement = dbConnection.createStatement();
System.out.println(createTableSQL);
// execute the SQL stetement
statement.execute(createTableSQL);
System.out.println("Table \"dbuser\" is created!");
} catch (Exception e) {
System.out.println(e.getMessage());
}finally{
if (statement != null) {
statement.close();
}//end of if statement

if (dbConnection != null) {
dbConnection.close();
}//end of if statement
}//end of Try Catch Final Block
}//end of Method

private static Connection getDBConnection() {
Connection dbConnection = null;
try {
Class.forName(DB_DRIVER);
} catch (ClassNotFoundException e) {
System.out.println(e.getMessage());
}//end of Try Catch Block

try {
dbConnection = DriverManager.getConnection(DB_CONNECTION, DB_USER,DB_PASSWORD);
return dbConnection;
} catch (SQLException e) {
System.out.println(e.getMessage());
}//end of try catch block

return dbConnection;
}//end of Method
}//end of Class

No comments:

Post a Comment