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
- 코딜리티
- html input
- wifi멀티탭
- web
- ubuntu
- 아두이노 핀
- 아두이노 와이파이
- 아두이노 핀맵
- 데이터베이스
- 웹 프로그래밍
- MySQL
- Virtual Box
- 아두이노 핀 맵
- Arduino pin map
- Codility
- vm
- HTML
- Arduino pin
- Arduino
- mysql c
- 알고리즘
- 아두이노
- 라즈베리파이
- Raspberry Pi
- Mysql c API
- mysql api
- 아두이노 pro mini
- database
- 아두이노 프로미니
- 아두이노 wifi
Archives
- Today
- Total
목록mysql query (1)
offfff
[MySQL C API] 7. 한 쿼리로 다중구문 수행하기(Multiple statements)
1. 소스코드 한 Query 문에 SQL 구문을 여러개 넣어 실행할 수 있다.그렇게 하려면, connect 단계에서 'CLIENT_MULTI_STATEMENTS' 플래그를설정해 줘야한다. #include #include void finish_with_error(MYSQL *con){fprintf(stderr, "%s \n", mysql_error(con));mysql_close(con);exit(1);} int main(int argc, char **argv){int status = 0;MYSQL *con = mysql_init(NULL);if (con == NULL) {fprintf(stderr, "mysql_init() failed \n");exit(1);} // connect 할 때, CLIENT_..
프로그래밍
2016. 8. 17. 09:00