먼저 테이블을 생성해 보겠습니다. 다음은 MySQL에서 테이블을 생성하는 쿼리입니다 -
mysql> create table DemoTable( Id int, Name varchar(30), CountryName varchar(30), Age int ); Query OK, 0 rows affected (0.66 sec)
다음은 MySQL 데이터베이스에 액세스하는 Java 코드입니다 -
import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.Statement; public class AccessMySQLDatabase { public static void main(String[] args) { Connection con = null; Statement st = null; try { con = DriverManager.getConnection("jdbc :mysql ://localhost :3306/web?" + "useSSL=false", "root", "123456"); st = con.createStatement(); String accessDatabase = "insert into DemoTable(Id,Name,CountryName,Age)" + " values(100,'David','AUS',24) "; int result = st.executeUpdate(accessDatabase); if (result > 0) { System.out.println("Record Inserted! Check your table now!"); } } catch (Exception e) { e.printStackTrace(); } } }
이것은 다음과 같은 출력을 생성합니다 -
Record Inserted! Check your table now!
이제 MySQL 테이블을 확인하겠습니다 -
Mysql> select * from DemoTable;
이것은 다음과 같은 출력을 생성합니다 -
+------+-------+-------------+------+ | Id | Name | CountryName | Age | +------+-------+-------------+------+ | 100 | David |AUS | 24 | +------+-------+-------------+------+ 1 row in set (0.00 sec)
다음은 Java를 사용하여 삽입된 레코드의 스냅샷입니다 -