SQLite error code
SQLITE_CANTOPEN_SYMLINK
SQLITE_CANTOPEN_SYMLINK is SQLite result code 1550, an extended code of SQLITE_CANTOPEN.
| Result code | 1550 |
|---|---|
| Name | SQLITE_CANTOPEN_SYMLINK |
| Primary code | SQLITE_CANTOPEN |
What it means
The SQLITE_CANTOPEN_SYMLINK result code is returned by the sqlite3_open() interface and its siblings when the SQLITE_OPEN_NOFOLLOW flag is used and the database file is a symbolic link.
Source: SQLite Result and Error Codes