mysql_secure_Installation is missing in my mysql installation

15

Try:

mysql_secure_installation
Share:
15

Related videos on Youtube

jj smith
Author by

jj smith

Updated on September 18, 2022

Comments

  • jj smith
    jj smith over 1 year

    My swifts code goal is to fetch the last image from binary data pic and display it in imageview picture. Right now its cusing a runtime error with indexpath. I did a similar thing with a string and it worked. The problem is converting binary data to a uiimage.

    enter image description here

         var picture = UIImageView()
     var itemName : [NSManagedObject] = []
    
    var itemNamez : [Info] = []
    
    func loadImage(){
        if let imageData = itemNamez[IndexPath.last] {
    
            let coredataLoadedimage = UIImage(data: imageData)
            picture.image = coredataLoadedimage
    
        }
    }
    
  • Guy
    Guy about 10 years
    mmm... how embarrassing...
  • vin
    vin about 6 years
    Tell me about it. I did mysql-secure-installation and wasted like half hour why the command wasn't working.