_MySQL.Charsets (gb.mysql)
返回包含MySQL支持字符集的只读数组。
Examples
Dim hCon As New [../../connection]
With hCon
.Type = "mysql"
.Port = "3306"
.Host = "localhost"
.[/comp/gb/user] = "root"
.Password = "mypass"
.Name = "[/def/gambas]"
.Open()
End With
Print hCon.MySQL.Charsets[2]
所有可用字符集请查看information_schema.CHARACTER_SETS。
更多细节请看
字符集与定序。