Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 스프링
- Spring
- 일정계획
- 생략
- db admin
- dbeaver
- ResponseBody
- 마리아DB
- AOP
- 루팅
- 캐릭터셋
- jsonview
- 긴문자열
- 제어역전
- 윈도우
- 의존성주입
- 설정파일
- ㅗ르
- 이클립스
- NoClassDefFoundError
- marketplace
- git
- cutomobjectmapper
- 마이바티스
- 버전
- mybatis
- Eclipse
- 리눅스
- SVN
- Version
Archives
- Today
- Total
목록마리아 (1)
프밍일기
Java 에서 MariaDB 연결 및 쿼리실행
■ Java 에서 MariaDB 연결 및 쿼리실행 public UserVo get(String id) throws ClassNotFoundException, SQLException { Class.forName("org.mariadb.jdbc.Driver"); Connection c = DriverManager.getConnection("jdbc:mariadb://localhost:3306/dbname", "dbuserid", "dbuserpassword"); String sql = "select * from tb_dyb_user where id = ?"; PreparedStatement ps = c.prepareStatement(sql); ps.setString(1, id); ResultSet rs = ..
Maria DB
2017. 1. 22. 14:13