Home | History | Annotate | Download | only in dist

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
30047 ** ReadOnly() -> (READONLY)
30101 ** (a) Exactly one of the READWRITE and READONLY flags must be set, and
35188 ** (a) Exactly one of the READWRITE and READONLY flags must be set, and
39075 u8 readOnly; /* True for a read-only database */
42769 int readOnly = 0; /* True if this is a read-only file */
42901 readOnly = (fout&SQLITE_OPEN_READONLY);
42911 if( rc==SQLITE_OK && !readOnly ){
42948 readOnly = (vfsFlags&SQLITE_OPEN_READONLY);
42999 pPager->readOnly = (u8)readOnly;
43786 if( NEVER(pPager->readOnly) ) return SQLITE_PERM;
44515 return pPager->readOnly;
45786 u8 readOnly; /* WAL_RDWR, WAL_RDONLY, or WAL_SHM_RDONLY */
45806 ** Possible values for WAL.readOnly
45809 #define WAL_RDONLY 1 /* The WAL file is readonly */
45810 #define WAL_SHM_RDONLY 2 /* The SHM file is readonly */
45906 pWal->readOnly |= WAL_SHM_RDONLY;
46659 pRet->readOnly = WAL_RDONLY;
47343 if( pWal->readOnly & WAL_SHM_RDONLY ){
47550 if( (pWal->readOnly & WAL_SHM_RDONLY)==0
47566 assert( rc==SQLITE_BUSY || (pWal->readOnly & WAL_SHM_RDONLY)!=0 );
47800 if( pWal->readOnly ){
48280 if( pWal->readOnly ) return SQLITE_READONLY;
48907 #define BTS_READ_ONLY 0x0001 /* Underlying file is readonly */
59953 p->readOnly = 1;
59961 p->readOnly = 0;
61532 if( p->readOnly==0 ) nWrite++;
61700 if( !p->readOnly || mrc!=SQLITE_INTERRUPT ){
61727 && db->writeVdbeCnt==(p->readOnly==0)
61732 if( NEVER(p->readOnly) ){
61744 if( rc==SQLITE_BUSY && p->readOnly ){
61809 if( !p->readOnly ){
63179 if( p->readOnly==0 ) db->writeVdbeCnt++;
64052 return pStmt ? ((Vdbe*)pStmt)->readOnly : 1;
113375 /* SQLITE_READONLY */ "attempt to write a readonly database",
114584 testcase( (1<<(flags&7))==0x02 ); /* READONLY */