프로그래밍+DB

MySQL: UTF-8 설정(한글깨짐해결)

출처: <http://discafe.tistory.com/entry/mysql-%ED%95%9C%EA%B8%80-%EC%84%A4%EC%A0%95utf8> 위 글을 보고 아래와 같이 설정함. C:\Program Files\MySQL\MySQL Server 5.6 #아래는 2016-07-24 추가한 내용 character-set-client-handshake = FALSE init_connect=”SET collation_connection = utf8_general_ci” init_connect=”SET NAMES utf8″ character-set-server = utf8 [client] default-character-set = utf8 [mysql] default-character-set = utf8 [mysqldump] default-character-set = utf8 (그리고 mysqld 를 다시 시작함.) show variables like ‘c%’; 위 구문으로 character set이 대부분 utf8로 변경된 것을 볼 수 …

더 읽기 »

MySQL: 백업 및 복원(Windows 버전)

MySQL 백업 Command Prompt에서 실행 mysqldump -u 아이디 -p 패스워드 데이터베이스명 > 저장할 파일명   mysqldump -u root test1 > c:\test1.sql   MySQL 복원 먼저 백업된 내용을 담을 데이터베이스를 생성 CREATE DATABASE newDB;   mysql – u 아이디 -p 패스워드 데이터베이스명 < 저장된파일명 mysql -u root newDB < c:\test1.sql   use newDB; show tables; 오호,,, 살아나 있네.

더 읽기 »

MySQL: 첫 실습

#cd /usr/bin // mysql 명령어가 있는 디렉토리로 이동 합니다. #mysql -u root -p mysql // mysql 접속 mysql -u 아이디 -p 패스워드 위와 같은 명령으로 접속   shell> mysql –host=127.0.0.1 shell> mysql –protocol=TCP The –protocol option enables you to establish a particular type of connection even when the other options would normally default to some other protocol. If the server …

더 읽기 »

JAVA: Eclipse의 AWT 폰트 깨짐, Console 폰트 깨짐 해결

관련글: http://gocoding.tistory.com/42   위와 같이 폰트가 깨질 때.   현재 설정: Eclipse Preferences -> General -> Workspace -> Text file encoding 설정이 UTF-8로 되어 있다.   Run Configurations…   VM arguments에 아래 문장 입력 -Dfile.encoding=MS949 Apply를 누르고, Run 단추를 누르면 OK!   잘 보입니다 ^^           한글 폰트 깨지는 상황.   Run Configurations…   Common 탭에서 …

더 읽기 »

JAVA: Eclipse 첫 사용

프로젝트 단위의 제대로 된 자바 프로그래밍을 할 때 사용 Open Perspective -> JAVA를 선택 우측상단에 Java 개발버튼보임 자바 프로젝트 만들기 JRE 버전 등을 선택 가능 자바 라이브러리들. Add External JARs를 눌러 외부 프레임워크를 추가할 때가 있다.   프로젝트가 만들어짐 클래스 추가 Finish를 눌러 진행   파일이 만들어짐.   소스코드에서 Source -> Generate Constructors from Superclass…   기본값대로 OK   기본 …

더 읽기 »

JAVA: 진법과 자료형

class CharToCode { public static void main(String[] args) { char ch=’A’; // char ch=65; int code = (int)ch; // ch to int type   System.out.printf(“%c=%d(%#X)%n”, ch, code, code);   char hch=’a’;// 97; System.out.printf(“%c=%d(%#X)%n”, hch, (int)hch, (int)hch); } } // find the korean windows     class OverflowEx { public static void main(String[] args) { short sMin = -32768; short sMax …

더 읽기 »

JAVA: 변수와 상수

변수: 값을 저장할 수 있는 메모리 상의 공간(기억공간)   variable 미국식 [|veriəbl;|vӕriəbl]  영국식 [|veəriəbl]  [형용사] 변동이 심한; 가변적인  참고 invariable variable temperatures(가변적인 기온) 출처: http://endic.naver.com/enkrEntry.nhn?sLn=kr&entryId=205d8e9c40c7439da55eebd7e85c3507&query=variable   사용법 자료형 변수명; // 변수 선언 int num; String name; num=50; // 자료 저장(초기화) name=”Hong”; // 문자열은 “”로 묶어준다. num=30; // num이 30이 된다. ‘변수‘ 값이 바뀜.   변수 선언과 초기화를 분리하는 것이 보기에 …

더 읽기 »

JDBC 사용(MySQL): Eclipse와 연결하기

JDBC(Java DataBase Connectivity) Java에서 DBMS에 접근하여 DB를 활용하기 위한 기능. DBMS 회사에서 제공한다. JDBC 프로그래밍의 순서? 1. 드라이버 로드 try { Class.forName(“com.mysql.jdbc.Driver”); // 드라이버 이름 대소문자 주의 } catch(ClassNotFoundException e) { e.printStackTrace(); } 2. Connection 생성 try { Connection conn = DriverManager.getConnection(DB접근URL,아이디,패스워드); // 예) (“jdbc:mysql://localhost:3306/bs”,”root”,””); } catch(SQLException se) { se.printStackTrace(); } MySQL Connector 설치 방법 mysql-connector-java-5.1.33.zip을 풀어서 jar 파일을 복사해서 …

더 읽기 »

MySQL 설치

https://downloads.mysql.com/archives/community/ 에서 MySQL 다운로드 가능. 참고로 내가 내려 받은 아래와 같다. Windows (x86, 64-bit), ZIP Archive | Jul 21, 2014 | 342.9M | Download (mysql-5.6.20-winx64.zip) 출처: <https://downloads.mysql.com/archives/community/> mysql-5.6.20-winx64.msi 설치 Typical mysqld 관리자 권한으로 실행 방화벽 허용 C:\Program Files\MySQL\MySQL Server 5.6\bin PATH 편집 MySQL의 bin 폴더를 추가 mysql 실행 완료.

더 읽기 »

JAVA: Eclipse에 SVN 클라이언트 설치(Subclipse)

SVN 서버 설치: Subversion-1.6.6(Tigris.org) 에 이어지는 글입니다.  미리 JDK, Eclipse가 설치되어 있어야 합니다. 이클립스를 실행해서 Help -> Eclipse Marketplace… Subclipse 1.10.13 을 Install (다른걸 선택하심 안됩니다~ 회오리치는 S 아이콘을! 설치해주세요!) 설치될 기능 확인 라이선스 동의~ 자동으로 설치됩니다..(기다리세요) 보안 경고에 OK 이클립스 프로그램을 재시작합니다. 로딩… 방금 설치한 기능을 사용한 통계를 보낼 것인지 묻습니다. OK Window 메뉴 -> Show View -> Other… …

더 읽기 »