Lines Matching defs:SQLITE_OPEN_URI
914 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */
2336 ** of whether or not the [SQLITE_OPEN_URI] flag is set when the database
2338 ** only interpreted as URIs if the SQLITE_OPEN_URI flag is set when the
3849 ** ^(<dt>[SQLITE_OPEN_URI]</dt>
3930 ** filename interpretation is enabled if the [SQLITE_OPEN_URI] flag is
44577 }else if( flags & SQLITE_OPEN_URI ){
44713 assert( (flags & SQLITE_OPEN_URI) || zName[strlen(zName)+1]==0 );
44846 if( flags & SQLITE_OPEN_URI ) ctrlFlags |= UNIXFILE_URI;
51776 assert( (eType!=SQLITE_OPEN_MAIN_DB) || (flags & SQLITE_OPEN_URI) ||
73127 if( isTempDb==0 && (isMemdb==0 || (vfsFlags&SQLITE_OPEN_URI)!=0) ){
182770 if( ((flags & SQLITE_OPEN_URI) /* IMP: R-48725-32206 */
182780 /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen
182782 flags |= SQLITE_OPEN_URI;
182968 flags &= ~SQLITE_OPEN_URI;
183209 flags |= SQLITE_OPEN_URI;
183212 flags |= SQLITE_OPEN_URI;
220780 const int flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_URI;