Write String Value Into a File in Swift

Swift
let fileName = "myFileName.txt"
var filePath = ""
// Fine documents directory on device
let dirs:[String] = NSSearchPathForDirectoriesInDomains(FileManager.SearchPathDirectory.documentDirectory, FileManager.SearchPathDomainMask.allDomainsMask, true)
if dirs.count > 0 {
    let dir = dirs[0] //documents directory
    filePath = dir.appending("/" + fileName)
    print("Local path = \(filePath)")
} else {
    print("Could not find local directory to store file")
    return
}
// Set the contents
let fileContentToWrite = "Text to be recorded into file"
do {
    // Write contents to file
    try fileContentToWrite.write(toFile: filePath, atomically: false, encoding: String.Encoding.utf8)
}
catch let error as NSError {
    print("An error took place: \(error)")
}
(0)
FREE
Developer Information
Submitted by Angler
O6, Zouk Mikaël,
+961 3 812548

Fatal error: Uncaught mysqli_sql_exception: Commands out of sync; you can't run this command now in /home/code/public_html/website/thefiles/_setup/classes/Connections.class.php:367 Stack trace: #0 /home/code/public_html/website/thefiles/_setup/classes/Connections.class.php(367): mysqli_stmt->fetch() #1 /home/code/public_html/website/thefiles/_setup/pages/product.php(252): Connections->SetStatProduct('994', 'views') #2 /home/code/public_html/website/index.php(19): include('/home/code/publ...') #3 {main} thrown in /home/code/public_html/website/thefiles/_setup/classes/Connections.class.php on line 367