_MySQL.Users (gb.mysql)

Property Read Users As String[]

Returns a read only array containing the Users that the current user can administrate.

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.Users[0]

See this example.