我的数据库连接配置正确。
目前我的配置仅在我没有指定class Array
def remove_range(f,l)
self[0..f-1].concat(self[l+1..-1])
end
end
a = [0,2,8,2,4,5]
b = a.remove_range(1,2)
[0, 2, 4, 5]
c = a.remove_range(3,4)
[0, 2, 8, 5]
但是当我输入数据库名称时,它会提示一个对话框
Default Schema
但是当我输入密码时会出现错误
Please enter password for the following service:
Service:Mysql@127.0.0.1:3306...some long text
User:xbin_sql
Password:
我不知道为什么,但我的密码和用户名是正确的