Home | History | Annotate | Download | only in orig

Lines Matching refs:readOnly

940 #define SQLITE_READONLY     8   /* Attempt to write a readonly database */
3179 ** <tr><td> file:data.db?mode=readonly <td>
3180 ** An error. "readonly" is not a valid option for the "mode" parameter.
13151 u8 readOnly; /* True for read-only statements */
24376 ** (a) Exactly one of the READWRITE and READONLY flags must be set, and
30019 ** ReadOnly() -> (READONLY)
30073 ** (a) Exactly one of the READWRITE and READONLY flags must be set, and
35160 ** (a) Exactly one of the READWRITE and READONLY flags must be set, and
39047 u8 readOnly; /* True for a read-only database */
42741 int readOnly = 0; /* True if this is a read-only file */
42873 readOnly = (fout&SQLITE_OPEN_READONLY);
42883 if( rc==SQLITE_OK && !readOnly ){
42920 readOnly = (vfsFlags&SQLITE_OPEN_READONLY);
42971 pPager->readOnly = (u8)readOnly;
43758 if( NEVER(pPager->readOnly) ) return SQLITE_PERM;
44487 return pPager->readOnly;
45758 u8 readOnly; /* WAL_RDWR, WAL_RDONLY, or WAL_SHM_RDONLY */
45778 ** Possible values for WAL.readOnly
45781 #define WAL_RDONLY 1 /* The WAL file is readonly */
45782 #define WAL_SHM_RDONLY 2 /* The SHM file is readonly */
45878 pWal->readOnly |= WAL_SHM_RDONLY;
46631 pRet->readOnly = WAL_RDONLY;
47315 if( pWal->readOnly & WAL_SHM_RDONLY ){
47522 if( (pWal->readOnly & WAL_SHM_RDONLY)==0
47538 assert( rc==SQLITE_BUSY || (pWal->readOnly & WAL_SHM_RDONLY)!=0 );
47772 if( pWal->readOnly ){
48252 if( pWal->readOnly ) return SQLITE_READONLY;
48879 #define BTS_READ_ONLY 0x0001 /* Underlying file is readonly */
59925 p->readOnly = 1;
59933 p->readOnly = 0;
61504 if( p->readOnly==0 ) nWrite++;
61672 if( !p->readOnly || mrc!=SQLITE_INTERRUPT ){
61699 && db->writeVdbeCnt==(p->readOnly==0)
61704 if( NEVER(p->readOnly) ){
61716 if( rc==SQLITE_BUSY && p->readOnly ){
61781 if( !p->readOnly ){
63151 if( p->readOnly==0 ) db->writeVdbeCnt++;
64024 return pStmt ? ((Vdbe*)pStmt)->readOnly : 1;
113339 /* SQLITE_READONLY */ "attempt to write a readonly database",
114548 testcase( (1<<(flags&7))==0x02 ); /* READONLY */