<< DbFuzzyGet SciDb DbFuzzyLoadFMB >>

SciDb >> SciDb > DbFuzzyHasFMB

DbFuzzyHasFMB

checkes whether a Fuzzy Meta Base exists in a database

Calling Sequence

FMBExists = DbFuzzyHasFMB(dbConnection)

Parameters

dbConnection

A pointer to database connection object

FMBExists

a bool value, equals true, if a FMB exists in a database

Description

DbFuzzyHasFMB(...) Checkes whether a Fuzzy Meta Base exists in a databse. Returns true only if every table from FMB exists in database.

Examples

// 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 = DbFuzzyCreateFMB();

See Also

Authors


Report an issue
<< DbFuzzyGet SciDb DbFuzzyLoadFMB >>