_MySQL.Engines (gb.mysql)

Property Read Engines As String[]

Retourne un tableau en lecture seule contenant les Moteurs de stockage admis par by MySQL.

Exemples

Dim hCon As New Connection

With hCon
  .Type = "mysql"
  .Port = "3306"
  .Host = "localhost"
  .User = "root"
  .Password = "mypass"
  .Name = "Gambas"
  .Open()
End With

Print hCon.MySQL.Engines[2]

Voyez votre information _schema.ENGINES pour tous les Moteurs de stockage admis.

Engines pour plus de détails.

Voir l'exemple this.