diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-31 16:42:03 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-31 16:42:03 +0200 |
commit | 4a33fcc1d2d467144ec063576131d346efb1f345 (patch) | |
tree | c57197f625040e2728398de896673b38e1161479 /sqlite3_opt_userauth_omit.go | |
parent | UPD: TestAuthCreateDatabase (diff) | |
download | golite-4a33fcc1d2d467144ec063576131d346efb1f345.tar.gz golite-4a33fcc1d2d467144ec063576131d346efb1f345.tar.xz |
Stash
[ci skip]
Diffstat (limited to 'sqlite3_opt_userauth_omit.go')
-rw-r--r-- | sqlite3_opt_userauth_omit.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sqlite3_opt_userauth_omit.go b/sqlite3_opt_userauth_omit.go index 0ae92da..3d1c758 100644 --- a/sqlite3_opt_userauth_omit.go +++ b/sqlite3_opt_userauth_omit.go @@ -62,4 +62,9 @@ func (c *SQLiteConn) AuthUserDelete(username string) error { return nil } +// Check is database is protected by user authentication +func (c *SQLiteConn) AuthIsEnabled() (exists bool) { + return +} + // EOF |