1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | package jdbc; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.InputStreamReader; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.StringTokenizer; public class JDBC { Connection conn; Statement stmt; ResultSet rs; String Driver = "com.mysql.jdbc.Driver"; String dbUrl = "jdbc:mysql://127.0.0.1/"; String dbName = ""; String loginOption = "?characterEncoding=utf8&useSSL=false&user=root&password=5071"; ///////////////////////////////////////////////////////////////////////////////////////////////////////////// //DB Connecting public void dbconnect() { try { System.out.println("DB Connecting...."); Class.forName(Driver); conn = DriverManager.getConnection(dbUrl+dbName+loginOption); System.out.println("DB "+dbName+" Connected!\n"); } catch (SQLException e) { e.printStackTrace(); } catch (ClassNotFoundException e) { e.printStackTrace(); } } //SELECT FROM public void selectQuery(String select, String from, int columns) throws SQLException { String selectSql = "SELECT "+select+" FROM "+from; dbconnect(); stmt = conn.createStatement(); rs = stmt.executeQuery(selectSql); System.out.println("↓ "+selectSql+" ↓\n"); while(rs.next()) { for(int i = 1; i<=columns; i++) { System.out.print(rs.getString(i)); if(i != columns) { System.out.print("\t"); } } System.out.println(); } System.out.println("\nSELECT COMPLETE!\n"); } //SELECT FROM WHERE public void selectQuery(String select, String from, int columns, String where) throws SQLException { String selectSql = "SELECT "+select+" FROM "+from+" WHERE "+where; dbconnect(); stmt = conn.createStatement(); rs = stmt.executeQuery(selectSql); System.out.println("↓ "+selectSql+" ↓\n"); while(rs.next()) { for(int i = 1; i<=columns; i++) { System.out.print(rs.getString(i)); if(i != columns) { System.out.print("\t"); } } System.out.println(); } System.out.println("\nSELECT COMPLETE!\n"); } //파일 읽어서 INSERT하는 메서드 public void file_read(String table_name, int column_cnt) throws Exception { try { FileInputStream input = new FileInputStream("C://" + table_name + ".txt"); InputStreamReader reader = new InputStreamReader(input, "UTF-8"); BufferedReader in = new BufferedReader(reader); // 한글 깨짐 현상 해결 StringTokenizer st = null; String b = ""; int line = 1; while ((b = in.readLine()) != null) { // Stringtokenizer를 이용해 탭으로 토큰으로 분리 st = new StringTokenizer(b, " "); String str[] = new String[column_cnt]; int i = 0; // 각 분리된 토큰을 배열에 넣음 while (st.hasMoreTokens()) { str[i++] = st.nextToken(); } if (line != 1) { // DB에 insert String squery = ""; if (table_name.equals("admin")) squery = "insert into company_5071.admin values('" + str[0] + "','" + str[1] + "','" + str[2] + "','" + str[3] + "','" + str[4] + "')"; else if (table_name.equals("customer")) squery = "insert into company_5071.customer values('" + str[0] + "','" + str[1] + "','" + str[2] + "','" + str[3] + "','" + str[4] + "','" + str[5] + "')"; else squery = "insert into company_5071.contract values('" + str[0] + "','" + str[1] + "','" + str[2] + "','" + str[3] + "','" + str[4] + "','" + str[5] + "')"; System.out.println(squery); executeUpdate(squery); } line++; } if(in!=null) try{in.close();} catch(Exception e) {} } catch (Exception e) { e.printStackTrace(); } } //sql 쿼리 삽입 메서드 public void executeUpdate (String sql) throws SQLException { stmt.executeUpdate(sql); } ///////////////////////////////////////////////////////////////////////////////////////////////////////////// public static void main(String[] args) { System.out.println("============================="); System.out.println("JDBC START"); System.out.println("============================="); JDBC jdbc = new JDBC(); jdbc.dbconnect(); try { jdbc.stmt = jdbc.conn.createStatement(); //기존에 만들어진 DB 및 테이블 삭제 System.out.println("DROPING EXISTS DATABASES...."); String sql = "DROP DATABASE IF EXISTS `company_5071`;"; jdbc.stmt.executeUpdate(sql); System.out.println("DROP EXISTS DATABASES COMPLETE!!\n"); //DB `company_선수번호` 가 생성되게 하시오. (UTF8 형식) System.out.println("CREATING DATABASE....."); sql = "CREATE DATABASE `company_5071` DEFAULT CHARACTER SET UTF8;"; jdbc.stmt.executeUpdate(sql); System.out.println("CREATE DATABASE COMPLETE!\n"); jdbc.dbName = "company_5071"; if(jdbc.conn.isClosed()!=true) try{jdbc.conn.close();} catch(SQLException e) {} jdbc.dbconnect(); jdbc.stmt = jdbc.conn.createStatement(); //admin 테이블 생성 System.out.println("`admin` TABLE CREATING...."); sql = "CREATE TABLE `admin` (" + "`name` varchar(20) NOT NULL," + "`passwd` varchar(20) NOT NULL," + "`position` varchar(20)," + "`jumin` char(14)," + "`inputDate` date," + "PRIMARY KEY(`name`,`passwd`));"; jdbc.stmt.executeUpdate(sql); System.out.println("`admin` TABLE CREATE COMPLETE!\n"); //customer 테이블 생성 System.out.println("`customer` TABLE CREATING...."); sql = "CREATE TABLE `customer` (" + "`code` char(7) NOT NULL," + "`name` varchar(20) NOT NULL," + "`birth` date," + "`tel` varchar(20)," + "`address` varchar(100)," + "`company` varchar(20)," + "PRIMARY KEY(`code`,`name`));"; jdbc.stmt.executeUpdate(sql); System.out.println("`customer` TABLE CREATE COMPLETE!\n"); //contract 테이블 생성 System.out.println("`contract` TABLE CREATING...."); sql = "CREATE TABLE `contract` (" + "`customerCode` char(7) NOT NULL," + "`contractName` varchar(20) NOT NULL," + "`regPrice` int," + "`regDate` date NOT NULL," + "`monthPrice` int," + "`adminName` varchar(20) NOT NULL);"; jdbc.stmt.executeUpdate(sql); System.out.println("`contract` TABLE CREATE COMPLETE!\n"); //제공되는 택스트 파일이 각 테이블로 입력될 수 있도록 하시오. jdbc.file_read("admin",5); jdbc.selectQuery("*","admin",5); //DB 사용자 아이디를 'user', 패스워드를 '1234'로 생성하시오. //중복 사용자 제거 System.out.println("DROPING EXISTS USER ...."); sql = "DROP USER IF EXISTS user@localhost"; jdbc.stmt.executeUpdate(sql); System.out.println("EXISTS USER DROP COMPLETE!!\n"); //생성 System.out.println("CREATING USER...."); sql = "CREATE USER user@localhost IDENTIFIED BY '1234';"; jdbc.stmt.executeUpdate(sql); System.out.println("CREATE USER COMPLETE!!\n"); //user 사용자 권한 부여&적용 System.out.println("GRANTING TO USER..."); sql = "GRANT SELECT,INSERT,DELETE,UPDATE ON company_5071.* TO user@localhost;"; jdbc.stmt.executeUpdate(sql); sql = "FLUSH PRIVILEGES;"; jdbc.stmt.executeUpdate(sql); System.out.println("GRANT AND FLUSH COMPLETE!!"); } catch (SQLException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } finally { if(jdbc.conn != null) try {jdbc.conn.close();} catch(SQLException e) {} if(jdbc.stmt != null) try {jdbc.stmt.close();} catch(SQLException e) {} if(jdbc.rs != null) try {jdbc.rs.close();} catch(SQLException e) {} } } } | cs |
'옛날' 카테고리의 다른 글
FileReader로 파일 읽어보기. (0) | 2017.01.10 |
---|---|
File 클래스를 이용한 파일 연동 (0) | 2017.01.09 |
[무작정] JDBC로 데이터베이스 생성,삭제 (0) | 2017.01.06 |
4.JTextField (0) | 2017.01.06 |
3. 데이터베이스에 쿼리문을 보내보자. (0) | 2017.01.06 |