_MySQL.Engines (gb.mysql)

Property Read Engines As String[]

Returns a read only array containing the Engines supported by MySQL.

Examples

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]

See your information_schema.ENGINES for all aviable engines.

Engines for more details.

See this example.