Instance Propertygrdb 7.3.0GRDB
databaseValue
FTS3Pattern.swift:141var databaseValue: DatabaseValue { get }
var databaseValue: DatabaseValue { get }
import GRDB
A toolkit for SQLite databases, with a focus on application development
struct FTS3Pattern
A full text pattern for querying FTS3 virtual tables.
struct DatabaseValue
A value stored in a database table.
init?(matchingAllPrefixesIn string: String)
Creates a pattern that matches all token prefixes found in the input string.
init?(matchingAllTokensIn string: String)
Creates a pattern that matches all tokens found in the input string.
init?(matchingAnyTokenIn string: String)
Creates a pattern that matches any token found in the input string.
init?(matchingPhrase string: String)
Creates a pattern that matches a contiguous string.
init(rawPattern: String) throws
Creates a pattern from a raw pattern string.
static func fromDatabaseValue(_ dbValue: DatabaseValue) -> FTS3Pattern?
let rawPattern: String
The raw pattern string.