_MySQL.Engine (gb.mysql)

Property Engine As String

Returns or sets the Storage Engine used by the MySQL class.

The default Storage Engine is 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

See this example.