Ejemplo n.º 1
0
        // Adds new table in database based on table item class object
        public static void AddTable(TableItem tableType)
        {
            SQLiteConnection connection = GetDBConnection(App.DatabasePath);

            connection.CreateTable(tableType.GetType());
            connection.Close();
        }