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
- mysql api
- wifi멀티탭
- mysql c
- Arduino pin
- web
- ubuntu
- 알고리즘
- Codility
- Virtual Box
- Arduino pin map
- Mysql c API
- 아두이노 와이파이
- 라즈베리파이
- 웹 프로그래밍
- 아두이노 핀맵
- html input
- Arduino
- 아두이노 핀 맵
- 아두이노 wifi
- 아두이노 프로미니
- HTML
- 아두이노 pro mini
- 아두이노
- Raspberry Pi
- MySQL
- vm
- 아두이노 핀
- 데이터베이스
- 코딜리티
Archives
- Today
- Total
목록mysql row id (1)
offfff
[MySQL C API] 5. 마지막 삽입행 ID 알아내기(Last inserted row id)
1. 소스코드 테이블에 저장된 마지막 행의 ID가 필요할 때가 있다.'mysql_insert_id()' 함수로 마지막 행의 ID를 알 수 있다.이 함수는 테이블의 열(컬럼)을 'AUTO_INCREMENT'로 정의했을때 사용가능하다. #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_re..
프로그래밍
2016. 8. 15. 09:00