Index: System.Data.SQLite/SQLiteModule.cs ================================================================== --- System.Data.SQLite/SQLiteModule.cs +++ System.Data.SQLite/SQLiteModule.cs @@ -671,11 +671,26 @@ GreaterThanOrEqualTo = 32, /// /// This value represents the MATCH operator. /// - Match = 64 + Match = 64, + + /// + /// This value represents the LIKE operator. + /// + Like = 65, + + /// + /// This value represents the GLOB operator. + /// + Glob = 66, + + /// + /// This value represents the REGEXP operator. + /// + Regexp = 67 } #endregion ///////////////////////////////////////////////////////////////////////////