Example #1
0
        public static void Update()
        {
            WindowLog.Debug("Database", "Saving information into the DB");

            // Start the querys
            string query = "";

            while (queryQueue.Count > 0)
            {
                query = queryQueue.Dequeue();
                Query(query);
            }
        }