Beginner here. On the MySQL prompt, you can type USE database_name
to select the database you are working with ; and help to make the queries easier.
I wonder if the same can be done in c#?
What I'm trying to do is to make a connection with a database, make a connection string without the file, then select it with USE database_name
and the returned value will be used to check if the db exist or not. I've seen other solutions, but none using this. So iIm curious if it's possible and which MysqlCommand method should I use.