acecalisto3 commited on
Commit
1780aff
·
verified ·
1 Parent(s): 8540cd7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -47,7 +47,6 @@ history = []
47
  url_monitoring_intervals = {} # Store monitoring intervals for each URL
48
  change_counts = {} # Track change frequency for each URL
49
 
50
- # Function to establish a database connection
51
  def get_db_connection():
52
  global db_connection
53
  if db_connection is None or not db_connection.is_connected():
@@ -56,8 +55,13 @@ def get_db_connection():
56
  host=DB_HOST,
57
  user=DB_USER,
58
  password=DB_PASSWORD,
59
- database=DB_NAME
60
- )
 
 
 
 
 
61
  return db_connection
62
  except Exception as e:
63
  logging.error(f"Error connecting to database: {e}")
 
47
  url_monitoring_intervals = {} # Store monitoring intervals for each URL
48
  change_counts = {} # Track change frequency for each URL
49
 
 
50
  def get_db_connection():
51
  global db_connection
52
  if db_connection is None or not db_connection.is_connected():
 
55
  host=DB_HOST,
56
  user=DB_USER,
57
  password=DB_PASSWORD,
58
+ ) # Connect to the server first
59
+
60
+ # Select the database
61
+ cursor = db_connection.cursor()
62
+ cursor.execute(f"USE {DB_NAME}")
63
+ cursor.close()
64
+
65
  return db_connection
66
  except Exception as e:
67
  logging.error(f"Error connecting to database: {e}")