#include #include #include #include #include #include #include #include #include using namespace std; #include "PackedTable.h" #include "TrackTable.h" #include "ProductTable.h" #include "SaleTable.h" #include "AlbumTrackTable.h" int main(int c, char** argv) { // Connect to the database AlbumTrackTable theAlbumTrackTable; theAlbumTrackTable.createAndLoadDataFile("album_track", "localhost", "root", NULL, "C_WELK"); /* MYSQL* conn = mysql_init(NULL); mysql_real_connect(conn, "localhost", "root", NULL, "C_WELK", 0, NULL, 0); TrackTable theTrackTable; theTrackTable.createDataFile("track", "localhost", "root", NULL, "C_WELK"); ProductTable theProductTable; theProductTable.createDataFile("product", "localhost", "root", NULL, "C_WELK"); SaleTable theSaleTable; theSaleTable.createDataFile("sale", "localhost", "root", NULL, "C_WELK"); */ }