_MySQL.Engine (gb.mysql)
Property Engine As String
Retourne ou définit le Moteur de Stockage utilisé par la classe MySQL.
Le moteur de Stockage par défaut est InnoDB.
Exemples
Dim hCon As New Connection
With hCon
.Type = "mysql"
.Port = "3306"
.Host = "localhost"
.User = "root"
.Password = "mypass"
.Name = "Gambas"
.Open()
End With
hCon.MySQL.Engine = "InnoDB"
Print hCon.MySQL.Engine