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