Ⅴ. 게시물 작성 시, DB에 INSERT
1. 게시물 작성 시, DB에 INSERT
- java에서 테이블을 만들어 SQLyog에도 출력이 되는지 확인
- sts4에 다음과 같이 입력
package exam;
import java.sql.*;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("==프로그램 시작==");
List<Article> articles = new ArrayList<>();
int lastArticleId = 0;
while (true) {
System.out.printf("명령어 ) ");
String cmd = sc.nextLine().trim();
if (cmd.equals("exit")) {
System.out.println("===종료===");
break;
}
if (cmd.equals("article write")) {
System.out.println("== 게시물 작성 ==");
int id = lastArticleId + 1;
System.out.printf("제목 : ");
String title = sc.nextLine();
System.out.printf("내용 : ");
String body = sc.nextLine();
System.out.printf("%d번글이 생성되었습니다\n", id);
System.out.println("title : " + title);
System.out.println("body : " + body);
Article article = new Article(id, title, body);
articles.add(article);
Connection conn = null;
PreparedStatement pstmt = null;
try {
Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://127.0.0.1:3306/JDBCTest?useUnicode=true&characterEncoding=utf8&autoReconnect=true&serverTimezone=Asia/Seoul&useOldAliasMetadataBehavior=true&zeroDateTimeNehavior=convertToNull";
conn = DriverManager.getConnection(url, "root", "");
System.out.println("연결 성공!");
String sql = "INSERT INTO article";
sql += " SET regDate = NOW()";
sql += ", updateDate = NOW()";
sql += ", title = '" + title + "'";
sql += ", `body` = '" + body + "';";
System.out.println(sql);
pstmt = conn.prepareStatement(sql);
int affectedRows = pstmt.executeUpdate();
System.out.println(affectedRows + "열에 적용됨");
} catch (ClassNotFoundException e) {
System.out.println("드라이버 로딩 실패");
} catch (SQLException e) {
System.out.println("에러: " + e);
} finally {
try {
if (conn != null && !conn.isClosed()) {
conn.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (pstmt != null && !pstmt.isClosed()) {
pstmt.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
lastArticleId++;
} else if (cmd.equals("article list")) {
System.out.println("== 게시물 리스트 ==");
if (articles.size() == 0) {
System.out.println("게시물이 없습니다");
continue;
}
System.out.println("번호 | 제목");
for (int i = articles.size() - 1; i >= 0; i--) {
Article article = articles.get(i);
System.out.printf("%4d | %s\n", article.id, article.title);
}
}
}
}
}
2. 입력 해보기
- 자바를 실행하여 article write를 입력
- 그 후, 제목 : title1, 내용 : body1를 입력
- 반복하여 title2, body2도 생성
- article list를 입력하여 리스트 확인
- SQLyog에 들어가 테이블 확인
'Back-End Study > DBMS' 카테고리의 다른 글
JDBC - 7. article list 시, 데이터를 DB로부터 가져오기 (0) | 2022.09.06 |
---|---|
JDBC - 6. JDBC SELECT 테스트 (0) | 2022.09.06 |
JDBC - 4. Insert Test (0) | 2022.09.05 |
JDBC - 3. JDBC 연결 테스트 (2) | 2022.09.05 |
JDBC - 2. 게시물 작성과 리스팅 (0) | 2022.09.03 |