Home
last modified time | relevance | path

Searched refs:isReadonly (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c422 int isReadonly in createIncrblobChannel() argument
428 int flags = TCL_READABLE|(isReadonly ? 0 : TCL_WRITABLE); in createIncrblobChannel()
434 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob); in createIncrblobChannel()
2664 int isReadonly = 0; in DbObjCmd()
2682 rc = Tcl_GetBooleanFromObj(interp, objv[++i], &isReadonly); in DbObjCmd()
2703 if( isReadonly ){ in DbObjCmd()
2975 int isReadonly = 0; in DbObjCmd()
2983 isReadonly = 1; in DbObjCmd()
2986 if( objc!=(5+isReadonly) && objc!=(6+isReadonly) ){ in DbObjCmd()
2991 if( objc==(6+isReadonly) ){ in DbObjCmd()
[all …]
/freebsd/contrib/sqlite3/
H A Dsqlite3.c42705 u8 isReadonly; /* True if read-only */
42962 if( pShmNode->isReadonly ){
43126 pShmNode->isReadonly = 1;
43290 pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE,
43319 if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY;
44630 int isReadonly = (flags & SQLITE_OPEN_READONLY);
44662 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
44733 if( isReadonly ) openFlags |= O_RDONLY;
44764 isReadonly = 1;
44842 if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY;
[all …]