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
- database
- 알고리즘
- Codility
- 아두이노 wifi
- web
- 아두이노 핀
- 아두이노 핀 맵
- MySQL
- 데이터베이스
- Virtual Box
- 아두이노 핀맵
- ubuntu
- 코딜리티
- 웹 프로그래밍
- 아두이노 프로미니
- vm
- mysql api
- 라즈베리파이
- wifi멀티탭
- Mysql c API
- Arduino pin map
- Arduino
- HTML
- mysql c
- Raspberry Pi
- 아두이노
- html input
- 아두이노 와이파이
- 아두이노 pro mini
- Arduino pin
Archives
- Today
- Total
목록mysql 데이터 가져오기 (1)
offfff
[MySQL C API] 4. 데이터 가져오기(Retrieving data from the database)
1. 다음과 같은 순서로 프로그래밍 한다. - MySQL 서버와 연결- Query 문 실행- Result set 가져오기- 모든 행 가져오기- Result set 해제 2. 소스코드 데이터베이스에 저장된 데이터를 가져오는 코드이다. #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){MYSQL *con = mysql_init(NULL);if (con == NULL) {fprintf(stderr, "mysql_init() failed \n");exit(1);} if (mysql_rea..
프로그래밍
2016. 8. 14. 09:00