Create Employee Table Oracle : Oracle JDBC « Database SQL JDBC « Java






Create Employee Table Oracle

 
import java.sql.Connection;
import java.sql.Statement;
import java.sql.DriverManager;
import java.sql.SQLException;

public class MainClass {

  private static final String EMPLOYEE_TABLE = "create table MyEmployees3 ( "
      + "   id INT PRIMARY KEY, firstName VARCHAR(20), lastName VARCHAR(20), "
      + "   title VARCHAR(20), salary INT " + ")";

  public static Connection getConnection() throws ClassNotFoundException, SQLException {
    String driver = "oracle.jdbc.driver.OracleDriver";
    String url = "jdbc:oracle:thin:@localhost:1521:database";
    String username = "name";
    String password = "pass";
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, username, password);
    return conn;
  }

  public static void main(String args[]) {
    Connection conn = null;
    Statement stmt = null;
    try {
      conn = getConnection();
      stmt = conn.createStatement();
      stmt.executeUpdate(EMPLOYEE_TABLE);
      stmt.executeUpdate("insert into MyEmployees3(id, firstName) values(100, 'A')");
      stmt.executeUpdate("insert into MyEmployees3(id, firstName) values(200, 'B')");
      System.out.println("CreateEmployeeTableOracle: main(): table created.");
    } catch (ClassNotFoundException e) {
      System.out.println("error: failed to load Oracle driver.");
      e.printStackTrace();
    } catch (SQLException e) {
      System.out.println("error: failed to create a connection object.");
      e.printStackTrace();
    } catch (Exception e) {
      System.out.println("other error:");
      e.printStackTrace();
    } finally {
      try {
        stmt.close();
        conn.close();
      } catch (Exception e) {
      }
    }
  }
}
           
         
  








Related examples in the same category

1.Create a table in database
2.Get Object From Oracle Database Using STRUCT
3.Insert BLOG(Picture or Photo) Data Type Into Oracle Database
4.Serialized And Deserialize Object Oracle
5.Get Oracle Table Names
6.Get Parameter MetaData From Oracle JDBC Driver
7.Test Oracle JDBC Driver Installation
8.Count row in Oracle
9.Get Column Names From ResultSet for Oracle
10.Demo ResultSet Oracle
11.All data types for Oracle
12.Get Column Privileges Oracle
13.Test OCINet 8 App
14.Test SSL
15.Test Data Encryption Integrity
16.Test DataSource LookUp
17.OracleDataSource Demo
18.Register custome type to Oracle
19.Insert custom type to Oracle
20.Check JDBC Installation for Oracle
21.Creating an OBJECT Type in an Oracle Database
22.Inserting an OBJECT Value into an Oracle Table
23.Connect to an Oracle database with JDBC
24.Creating an Oracle Table to Store Java Types