From ddeaf907508561effb2a8e38dffccb79f46a6d41 Mon Sep 17 00:00:00 2001 From: 0ceanSlim Date: Fri, 8 Dec 2023 14:58:33 -0500 Subject: [PATCH] clarify databse selection --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 939d2d1..9f37579 100644 --- a/cli.py +++ b/cli.py @@ -40,7 +40,7 @@ def check_sql_config(): def get_sql_config(): # Define the connection string sql_server = input("Enter the sql server (network\location): ") - sql_database = input("Enter the sql database: ") + sql_database = input("Enter the sql database: \n (can be left empty if you're unsure of your database names)") sql_user = input("Enter the sql user: ") sql_password = input("Enter the sql password: ")