In this video we’ll create the actual database for our CRM project. We’ll also start to build out the table where we’ll store most of the information that we want to collect about our customers.
To do most MySQL things in tKinter with Python, we need to create a cursor. The cursor is what we use to send commands to the database and get results.
After we create a cursor instance, we can use it to create a database and a table.
Add comment