구문객체를 던지는 3가지 방법1. execute -> 테이블 생성, 수정,삭제 등 데이터베이스 관리 명령어 사용 create..2. excuteUpdate -> 레코드 삽입 수정 삭제등 데이터 조작 명령어 사용 insert, update, delete..3. excuteQuery -> 레코드 조회, 테이블 조회 등 조회 명령어 사용 selete.. [ ResultSet 을 통해 쿼리 결과를 가져 올 수 있다. 79번줄 참고! ] 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828..
MYSQL 연결 및 쿼리 보내기 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException;import java.sql.Statement; //java코드로 min디비에 접속해서//student 테이블을 만듬//create table student(// id int,// name varchar(20),// grade int//);//----- 디비 라이브러리 사용.//C..
서버 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.IOException;import java.io.InputStreamReader;import java.io.OutputStreamWriter;import java.net.ServerSocket;import java.net.Socket; import javax.swing.plaf.synth.SynthSeparatorUI; public class TcpServer { public static ..
보내는 쪽 - InetAddressTest 12345678910111213141516171819202122232425262728293031323334353637383940414243import java.io.IOException;import java.net.DatagramPacket;import java.net.DatagramSocket;import java.net.InetAddress;import java.net.SocketException;import java.net.UnknownHostException; public class InetAddressTest { public static void main(String[] args) { try { InetAddress ip = InetAddress.get..
- Total
- Today
- Yesterday
- Create
- Controller
- 자바
- 스프링
- 사용
- nsis
- mysql
- 어노테이션
- 하기
- mybatis
- 안드로이드
- iNT
- Delete
- Default
- 클래스
- Android
- 연결
- 라이브러리
- UTF-8
- js
- java
- 생성
- spring
- Class
- jdbc
- 음식
- Server
- synchronized
- jsp
- 종류
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |