일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 pin
- 아두이노 wifi
- vm
- Arduino pin map
- Virtual Box
- 아두이노 pro mini
- ubuntu
- 아두이노 와이파이
- database
- 라즈베리파이
- Arduino
- Codility
- 웹 프로그래밍
- 아두이노 핀맵
- html input
- mysql c
- mysql api
- MySQL
- web
- 데이터베이스
- 알고리즘
- Mysql c API
- 아두이노 핀
- 코딜리티
- Raspberry Pi
- wifi멀티탭
- 아두이노 핀 맵
- HTML
- Today
- Total
offfff
[MySQL C API] 4. 데이터 가져오기(Retrieving data from the database) 본문
1. 다음과 같은 순서로 프로그래밍 한다.
- MySQL 서버와 연결
- Query 문 실행
- Result set 가져오기
- 모든 행 가져오기
- Result set 해제
2. 소스코드
데이터베이스에 저장된 데이터를 가져오는 코드이다.
#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)
{
MYSQL *con = mysql_init(NULL);
if (con == NULL) {
fprintf(stderr, "mysql_init() failed \n");
exit(1);
}
if (mysql_real_connect(con, "localhost", "user01", "1q2w3e!",
"testdb", 0, NULL, 0) == NULL)
{
finish_with_error(con);
}
// testdb에서 Cars 테이블을 모두 가져옴
if (mysql_query(con, "SELECT * FROM Cars"))
{
finish_with_error(con);
}
// mysql_store_result함수로 result set을 가져오고
// result set을 MYSQL_RES 구조체에 저장한다
MYSQL_RES *result = mysql_store_result(con);
if (result == NULL)
{
finish_with_error(con);
}
// mysql_num_fields 함수로 테이블의 Column 수를 알아낸다
int num_fields = mysql_num_fields(result);
// row가 없을때까지 반복해서 row를 가져오면서
// 영역의 수만큼 row의 내용을 콘솔에 출력한다
MYSQL_ROW row;
while (row = mysql_fetch_row(result))
{
for (int i=0; i<num_fields; i++)
{
printf("%s ", row[i] ? row[i] : "NULL");
}
printf("\n");
}
// result set을 해제(free)해준다
mysql_free_result(result);
mysql_close(con);
exit(0);
}
3. 출력 예시
$ ./retrieve_data
1 Hyundai 8000
2 Audi 9000
3 GM 7000
아래 링크를 참고하여 번역 및 수정함
http://zetcode.com/db/mysqlc/
'프로그래밍' 카테고리의 다른 글
[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] 3. 테이블 생성 및 데이터 넣기(Creating and populating a table) (0) | 2016.08.13 |
[MySQL C API] 2. 데이터베이스 생성(Creating a database) (0) | 2016.08.12 |
[MySQL C API] 1. 데이터베이스 프로그래밍 개발환경 구축 (0) | 2016.08.11 |