Convert string to SQL format.
returnedString = sqlstr(string)
returnedString - type: str
string - type: str
String with special SQL chars converted appropriately. Merely converts a single quote to two single quotes.
"output.txt" << sqllstr("hello'bye") << "\n";
Outputs:
hello''bye