데이터베이스 처리에 대한 오류, 경고 및 상태 정보를 반환한다.
Type | Description |
---|---|
STRING | 오류 정보 문자열 |
전용 브라우저 환경에서만 동작합니다.
function btnTest_on_mouseup(objInst)
{
if (db01.executesql("select * from my_table") == false) {
screen.alert(db01.getlasterrormessage());
return;
}
}