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
- 아두이노 핀 맵
- mysql api
- Virtual Box
- web
- Arduino pin map
- ubuntu
- vm
- Codility
- MySQL
- 아두이노
- 라즈베리파이
- mysql c
- database
- 아두이노 핀맵
- 아두이노 프로미니
- 데이터베이스
- 아두이노 핀
- 알고리즘
- HTML
- Raspberry Pi
- Mysql c API
- Arduino
- 웹 프로그래밍
- Arduino pin
- wifi멀티탭
- 아두이노 와이파이
- 아두이노 pro mini
- 코딜리티
Archives
- Today
- Total
목록mysql column (1)
offfff
[MySQL C API] 6. 컬럼 이름 가져오기(Column header)
1. 소스코드 이전에는 result set으로 테이블을 받아와 한 row씩 데이터를 출력했었다.이것은 테이블에 저장된 값들만 가지고 왔을 뿐, Column 정보는 알 수 없었다.이전 글 링크 : http://dk-projects.tistory.com/11 이 소스코드에서는 column header를 사용해서Column의 이름들을 출력해 본다. #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) {fp..
프로그래밍
2016. 8. 16. 09:00