home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-05-08 | 911 b | 45 lines |
-
- import java.sql.*;
-
- // Create the Coffee Table.
- public class CreateCoffees {
-
- public static void main(String args[]) {
-
- String url = "jdbc:odbc:CafeJava";
- Connection con;
- String createString;
- createString = "create table COFFEES " +
- "(COF_NAME varchar(32), " +
- "SUP_ID int, " +
- "PRICE float, " +
- "SALES int, " +
- "TOTAL int)";
- Statement stmt;
-
- try {
- Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
-
- } catch(java.lang.ClassNotFoundException e) {
- System.err.print("ClassNotFoundException: ");
- System.err.println(e.getMessage());
- }
-
- try {
- con = DriverManager.getConnection(url,
- "Admin", "duke1");
-
- stmt = con.createStatement();
- stmt.executeUpdate(createString);
-
- stmt.close();
- con.close();
-
- } catch(SQLException ex) {
- System.err.println("SQLException: " + ex.getMessage());
- }
-
- }
- }
-
-