_MySQL.Collations (gb.mysql)
返回包含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.Collations[2]
所有可用定序请查看information_schema.COLLATIONS。
更多细节请看
字符集与定序。