_MySQL.Engine (gb.mysql)
Property Engine As String
返回或设置MySQL
类使用的存储引擎。
默认存储引擎为InnoDB
Examples
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