// returns true if DB was running static bool shutDownDB() { RemoteDB db = connectToDBOpt(#1006463); if (db != null) { print("Shutting down DB " + #1006463 + "..."); db.xshutdown(); db.close(); print("DB shut down."); true; } else { print("DB not running."); false; } }