일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Arduino
- 아두이노 wifi
- 아두이노 핀맵
- 아두이노 와이파이
- mysql api
- 아두이노
- 코딜리티
- 알고리즘
- 아두이노 핀
- 웹 프로그래밍
- Raspberry Pi
- 데이터베이스
- Mysql c API
- web
- Arduino pin
- Arduino pin map
- ubuntu
- 아두이노 pro mini
- Codility
- HTML
- database
- MySQL
- wifi멀티탭
- 아두이노 핀 맵
- html input
- Virtual Box
- mysql c
- 라즈베리파이
- vm
- 아두이노 프로미니
- Today
- Total
offfff
[MySQL C API] 7. 한 쿼리로 다중구문 수행하기(Multiple statements) 본문
1. 소스코드
한 Query 문에 SQL 구문을 여러개 넣어 실행할 수 있다.
그렇게 하려면, connect 단계에서 'CLIENT_MULTI_STATEMENTS' 플래그를
설정해 줘야한다.
#include <my_global.h>
#include <mysql.h>
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_MULTI_STATEMENTS 플래그를 인자로 추가
if (mysql_real_connect(con, "localhost", "user01", "1q2w3e!", "testdb",
0, NULL, CLIENT_MULTI_STATEMENTS) == NULL)
{
finish_with_error(con);
}
// 플래그를 추가해야만, 아래와 같은 다중문을 실행할 수 있다
if (mysql_query(con, "SELECT Name FROM Cars WHERE Id=2;\
SELECT Name FROM Cars WHERE Id=3;\
SELECT Name FROM Cars WHERE Id=1;"))
{
finish_with_error(con);
}
do {
MYSQL_RES *result = mysql_store_result(con);
if (result == NULL) {
finish_with_error(con);
}
MYSQL_ROW row = mysql_fetch_row(result);
printf("%s \n", row[0]);
mysql_free_result(result);
status = mysql_next_result(con);
if (status >0) {
finish_with_error(con);
}
} while(status == 0);
mysql_close(con);
exit(0);
}
'mysql_real_connect()'함수의 마지막 인자로 client flag가 들어간다.
몇가지 기능 부여하는데 사용되는데, 다른 기능은 나중에 알아본다.
이 예제에서 나온 'CLIENT_MULTI_STATEMENTS'는
여러개의 SQL구문을 한 커리에서 한번에 실행하는 기능을 더해준다.
if (mysql_query(con, "SELECT Name FROM Cars WHERE Id=2;\
SELECT Name FROM Cars WHERE Id=3;\
SELECT Name FROM Cars WHERE Id=1;"))
{
finish_with_error(con);
}
이 예제의 쿼리문은 SELECT구문 3개로 구성되어 있는데,
각각은 세미콜론(;)으로 구분짓는다.
쿼리문을 쭉 이어적으면 '소스코드를 알아보기 힘든 사태;가 발생할 수 있는데,
그냥 엔터를 쳐서 구문별로 나누면 컴파일러가 뭐라고 한다.
그런데 \는 문자열을 두 줄로 나눠쓸 수 있게 해준다.
한 쿼리에 다중문을 쓸 때는 소스코드를 알아보기 쉽게 \를 사용한다.
2. 실행 결과
$ ./multiple_statements
Audi
GM
Hyundai
SELECT문에서 Id를 요구한 순서대로 데이터가 출력된다.
아래 링크를 참고하여 번역 및 수정함
http://zetcode.com/db/mysqlc/
'프로그래밍' 카테고리의 다른 글
[MySQL C API] 9. 데이터베이스에 저장된 이미지 가져오기(Selecting images from MySQL database) (0) | 2016.08.19 |
---|---|
[MySQL C API] 8. 데이터베이스에 이미지 저장하기(Inserting images into MySQL database) (1) | 2016.08.18 |
[MySQL C API] 6. 컬럼 이름 가져오기(Column header) (0) | 2016.08.16 |
[MySQL C API] 5. 마지막 삽입행 ID 알아내기(Last inserted row id) (0) | 2016.08.15 |
[MySQL C API] 4. 데이터 가져오기(Retrieving data from the database) (0) | 2016.08.14 |