DB 관련 공부를 해야겠다 싶어 MySQL 공부를 시작한다. 어깨 너머로 Select문 이라던가 Table 이라던가 들은 이야기는 많지만, 실제로 개발 환경 구축 부터 사용까지 해본 것이 하나도 없기 때문에... 설치부터 한걸음.
다운로드 파일이 2가지 버전이 있는데
mysql-installer-web-community
mysql-installer-community
뭐가 다른지 몰라 용량이 큰 걸로 받았다
MySQL > Downloads > Community (GPS) Downloads > MySQL Community Server - Download > MySQL Installer for Windows >MySQL Installer 8.0.13
설치 방법
생략
https://dev.mysql.com/doc/connector-cpp/8.0/en/connector-cpp-apps-windows-visual-studio.html
설치 경로
C:\Program Files\MySQL
C:\Program Files (x86)\MySQL
Visual Studio 프로젝트 환경 설정
플랫폼 x64 설정
테스트 코드 작성
#include#include #pragma comment(lib, "libmysql.lib") int main() { mysql_get_client_info(); return 0; }
결과
SSLEAY32.dll
LIBEAY32.dll
둘다 SSL Library 인 듯. MySQL 사용시 SSL Library 설치는 기본?
OpenSSL Library Build 하기 - https://pigstoe83.tistory.com/12
그 외 :PDB 파일을 찾거나 열 수 없습니다" 은 다음과 같이 해결 가능
디버그>옵션>디버깅>기호
기호 파일 위치 선택 후 캐시 위치 추가하면 해결
https://msdn.microsoft.com/ko-kr/library/ms241613.aspx
'Works > MySQL' 카테고리의 다른 글
Windows Command 에서 MySQL 사용 (0) | 2018.11.18 |
---|
댓글