I want to store data in string form to MySQL. I have created the tables in the MySQL.
I haven’t worked with DATABASE ever. Can you please provide me code to store that data in the MySQL DB.
e.g. Let’s say I have a string “stack_overflow” and there is a column “SiteName” in a table “SiteDetails” in the DataBase.
So how to store the string “stack_overflow” in the column “SiteName”.
I want to store data in string form to MySQL. I have created the
Share
You should start from the Java JDBC tutorial. After you understand what is happening there you will need a JDBC driver for MySQL.