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
- Arduino pin map
- 아두이노 와이파이
- Mysql c API
- web
- mysql api
- 데이터베이스
- MySQL
- 아두이노 프로미니
- Virtual Box
- 코딜리티
- 아두이노 핀 맵
- wifi멀티탭
- 아두이노 pro mini
- Arduino pin
- database
- 아두이노 wifi
- ubuntu
- Raspberry Pi
- vm
- html input
- 아두이노 핀맵
- 아두이노 핀
- 아두이노
- HTML
- Codility
- 웹 프로그래밍
- mysql c
- 라즈베리파이
- 알고리즘
- Arduino
Archives
- Today
- Total
목록mysql 데이터베이스 생성 (1)
offfff
[MySQL C API] 2. 데이터베이스 생성(Creating a database)
1. 다음과 같은 순서로 프로그래밍 한다 - Connection hadle structure 초기화- MySQL Server와 연결- Query 문 실행- 연결 종료 2. 소스코드 아래 코드는 MySQL 데이터베이스 서버에 'testdb'라는 새로운 DB를 생성하는 코드이다. #include #include int main(int argc, char **argv){//# Connection handle structure 선언 및 초기화MYSQL *con = mysql_init(NULL);if (con == NULL){fprintf(stderr, "%s \n", mysql_error(con));exit(1);} //# MySQL Server와 연결// root : 서버에 접속할 사용자 ID// root_p..
프로그래밍
2016. 8. 12. 09:00