Searched refs:SQLAuthAllow (Results 1 – 3 of 3) sorted by relevance
242 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in createView()250 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in createTempView()255 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in dropView()263 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in dropTempView()272 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in createVTable()280 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in dropVTable()312 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowTransaction()322 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in allowReindex()332 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowPragma()337 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowAttach()[all …]
40 extern const int SQLAuthAllow;77 int allowSelect() { return SQLAuthAllow; } in allowSelect()
35 const int SQLAuthAllow = SQLITE_OK; variable