위에서 언급한 JSQL에 이어
4. 물론 HTML5의 인기로 인해 웹 DB가 대세로 자리 잡았습니다
따라서 JSQL은 다음과 같이 캡슐화됩니다.
_CLIENTDATABASE_ = 'HotelManage';
_CLIENTDBVERSION_ = '0.1'; 클라이언트 데이터베이스";
_CLIENTDBSIZE_ = 10240;
JSQL("create table sqllite(id int)").OnClient().execute();
for (var i = 0; i < ; 1000; i ) {
JSQL("sqllite(id) 값에 삽입 (" i ")").OnClient().execute()
var result = (" select * from sqllite").OnClient( ).executeSQL();
//alert(result);
for(var i=0;i//do what using result[i]
};
물론 웹 DB의 sqlite에서는 Insert / select / update / delete / create / drop table
더욱 강력한 SQL 문도 지원합니다.