Visit Mozilla.org

토론:Storage

MDC

[편집] 잠금 문제 피하기

이 섹션에서 언급하고 있는 방법 (1)과 (2)는 기존 문서에서 삭제된 부분으로 보입니다.

SQLite Statements and Connections

Each SQLite can support only one active statement. This means that if you need to read the results of a query, and then do further queries based on each row, you have two options:

1. Read the rows from the first query completely, and then run secondary queries to fill in that data afterwards.

2. Create a second database handle, and perform secondary queries using that database handle while reading rows from the first statement.

This restriction might be lifted once SQLite supports proper cursors.

영어 버전의 토론 페이지에 수정이 필요한 것 같다고 적어 두었으니 원문이 수정되기를 기다려보죠~ :-)

-- Jeongkyu