_MySQL.Collation (gb.mysql)
Property Collation As String
返回或设置MySQL
类使用的定序。
默认定序为utf8_general_ci
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.Collation = "utf8_general_ci"
Print hCon.MySQL.Collation
所有可用定序请查看information_schema.COLLATIONS。
更多细节请看
字符集与定序。