Function to catch the Serial from the hard drive std::string StringToUpper(std::string strToConvert) { for (unsigned int i = 0; i < strToConvert.length(); i++) strToConvert[i] =…
I’m trying to make a INSERT in the MS SQL, when running the code, there is no error, however INSERT in sql, running a script manually in sql saves it without any problem. I have tried both ways, the…