mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
- enabled by default on 64-bit macOS and Linux (`amd64`/`arm64`) - depends on merged but unreleased wazero - may cause small performance regression - users may need WithMemoryLimitPages if not enough address space available - needs docs
24 lines
693 B
Go
24 lines
693 B
Go
//go:build !(linux || darwin || windows || freebsd || openbsd || netbsd || dragonfly || illumos) || sqlite3_nosys
|
|
|
|
package vfs
|
|
|
|
// SupportsFileLocking is false on platforms that do not support file locking.
|
|
// To open a database file on those platforms,
|
|
// you need to use the [nolock] or [immutable] URI parameters.
|
|
//
|
|
// [nolock]: https://sqlite.org/uri.html#urinolock
|
|
// [immutable]: https://sqlite.org/uri.html#uriimmutable
|
|
const SupportsFileLocking = false
|
|
|
|
func (f *vfsFile) Lock(LockLevel) error {
|
|
return _IOERR_LOCK
|
|
}
|
|
|
|
func (f *vfsFile) Unlock(LockLevel) error {
|
|
return _IOERR_UNLOCK
|
|
}
|
|
|
|
func (f *vfsFile) CheckReservedLock() (bool, error) {
|
|
return false, _IOERR_CHECKRESERVEDLOCK
|
|
}
|