loads a copy of FMB from database (if it exists in the database)
fuzzySQL = DbFuzzyLoadFMB(dbConnection)
A pointer to database connection object
A pointer to a FuzzySQL object, which must be used for all fuzzy operations, including fuzzy queries and fuzzy objects manipulations
DbFuzzyLoadFMB(...)
Loads a local copy of FMB from database, if it exists in the database. Returns a pointer
to FuzzySQL object, which may further be used for fuzzy queries and handling fuzzy objects.
Whether the FMB exists in a database, may be checked using DbFuzzyHasFMB() function.
// Opens a “PostgreSQL” connection with a structure connexionStruct = struct(); connexionStruct.provider = "postgresql"; connexionStruct.database = "myDataBase"; connexionStruct.hostname = "127.0.0.1" ; connexionStruct.use = "myUsername"; connexionStruct.password = "myPassword"; DbConnect(connexionStruct); //creating FuzzySQL object on default connection; fuzzySQL = DbFuzzyLoadFMB(); | ![]() | ![]() |