Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Task - Connecting to a MySQL Database and Executing Commands | Introduction to Databases with .NET
Introduction to .NET with C#
course content

Contenido del Curso

Introduction to .NET with C#

Task - Connecting to a MySQL Database and Executing Commands

This task will recap most of the basic concepts of this chapter but the solution for it is very similar to what we had been practicing in the videos. Your task is to:

  • Write the code for connecting to a server. You can connect to your local server if you have it hosted on your PC. If not, you can enter placeholder values in the connection string. The database name in the connection string should be school;
  • Make sure you are correctly closing the connection after use; Use either the Close() method or the using statement;
  • Enclose the relevant code into a try-catch block;
  • Execute the command for creating a new table called teachers, which will have four columns, namely id, name, age, and experience. Use the following command: CREATE TABLE teachers (id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30), age INT, experience FLOAT);
  • Execute the following three commands, which will insert 3 rows into the database:
  • Finally, read and display the data of the 3 rows. The column name is of type String, age is of type Int32, and experience is of type Float.

¿Todo estuvo claro?

Sección 3. Capítulo 9
We're sorry to hear that something went wrong. What happened?
some-alt