프로그래밍/ETC3 오라클 + 이클립스(java) 연동 - 환경: Eclipse [ConnectionMain] package org.joonzis.ex2; import java.sql.Connection; import java.sql.SQLException; public class ConnectionMain { public static void main(String[] args) { Connection conn = null; try { conn = DBConnection.getConnection(); System.out.println("DB 연결 성공"); conn.close(); } catch (ClassNotFoundException e) { System.out.println("jdbc 드라이버 오류"); } catch (SQLException e) { .. 2023. 4. 27. 0313-17 보호되어 있는 글 입니다. 2023. 3. 21. Git 명령어 모음 내가 계속 기억하려고 정리하는 Git 명령어 모음 - git branch : 브랜치 목록 확인 1) git branch test : test 브랜치 생성 2) git checkout test : test 브랜치 이동 1) 파일 수정, 삭제, 생성 등 작업 완료 후 2) git add . / git add 파일명 3) git commit -m "메시지" 4) git push origin test : test 브랜치로 push 5) Github에서 new pr 생성 2022. 12. 10. 이전 1 다음 반응형