Home > comp > gb.db.mysql > _mysql > engine 
  [3.0]
 fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
Engine
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

Supported Storage Engines.

See this example.