I'm wondering if there was any possibility to use this function:
stmt, err := db.Prepare("INSERT INTO ? VALUES ()", tableName)
fatal(err)
What I try to do is: Getting a table name and trying, with go, to create a new element in the database with default option. (database = MySQL)
If you have any idea about why it isn't working or how I can do that I would be really greatfull