[mysql]

프로그래밍/JAVA 2012. 10. 12. 15:58

mysql 작업 시 query를 날려 getResultSet()하였을 때

resultSet이 empty인 것을 확인하기 위한 방법


boolean empty = true;

while(rSet.next()){

...

empty = false;

}


if(empty) { ... }

'프로그래밍 > JAVA' 카테고리의 다른 글

리눅스 상에서 jar 파일 만들기  (0) 2013.07.11
JTable에서 열(row) 삭제하기  (0) 2012.11.14
Table 만들기  (0) 2012.09.12
Border  (0) 2012.09.12
MFC와 같이 group 묶어주는 titled border  (0) 2012.09.11
Posted by halloRa
,

출처: http://stackoverflow.com/questions/588307/c-obtaining-milliseconds-time-on-linux-clock-doesnt-seem-to-work-properl



#include <sys/time.h>
#include <ctime>
#include <stdio.h>
#include <unistd.h>
int main()
{
   
struct timeval start, end;

   
long mtime, seconds, useconds;    

    gettimeofday
(&start, NULL);
    usleep
(2000);
    gettimeofday
(&end, NULL);

    seconds  
= end.tv_sec  - start.tv_sec;
    useconds
= end.tv_usec - start.tv_usec;

    mtime
= ((seconds) * 1000 + useconds/1000.0) + 0.5;

    printf
("Elapsed time: %ld milliseconds\n", mtime);

   
return 0;
}

Posted by halloRa
,

$ g++ -I /usr/local/include/mysql++/ -I /usr/local/mysql/include/ -L /usr/local/lib/ -L /usr/local/mysql/lib -lmysqlpp <fileName>

Posted by halloRa
,