Database Connection Handeling - MatroseN/Flashcards GitHub Wiki
How does the web-app access the MYSQL Database
The different classes
- DbConnect
- Sets up a MYSQL connection using the connection string from DbConnectionString
- DataAdapter
- Takes a DBConnect object and a statement string to send request to the Database
- Statement
- Lets you create a statement that can then be used multiple times for different queries
- DbConnectionString
- Store the connection string to the MYSQL server in it. (Class Template)