Searched refs:SQLITE_OPEN_READ_ONLY (Results 1 – 2 of 2) sorted by relevance
820 const SQLITE_OPEN_READ_ONLY = ffi::SQLITE_OPEN_READONLY; constant971 let mut db2 = Connection::open_with_flags(&path, OpenFlags::SQLITE_OPEN_READ_ONLY).unwrap(); in test_concurrent_transactions_busy_commit()1033 let result = Connection::open_with_flags(filename, OpenFlags::SQLITE_OPEN_READ_ONLY); in test_open_failure()1124 OpenFlags::SQLITE_OPEN_READ_ONLY | OpenFlags::SQLITE_OPEN_READ_WRITE, in test_open_with_flags()1125 OpenFlags::SQLITE_OPEN_READ_ONLY | OpenFlags::SQLITE_OPEN_CREATE, in test_open_with_flags()
64 debug_assert_eq!(1 << OpenFlags::SQLITE_OPEN_READ_ONLY.bits, 0x02); in open_with_flags()