Working on a swift project, I wanna use sqlite3 for data base. I have read many articles in which they used to follow FMDB.Instead of using that, is there any other alternate ways ??
In Objective C, they created instance for sqlite3 which is declared as typedef struct like
sqlite3 *db;
and they used this instance through the program to access the database.
Similarly how can I create an instance for typedef
struct
in Swift ?????