由于 Oracle 内置了对 kerberos 的支持,并且 sqlplus 可以使用 oci8 使用 kerberos 连接到数据库,我可以在 ruby 中做类似的事情吗?
require 'oci8'
oci = OCI8.new('SomeUser','SomePass','hostname.servicename')
oci.exec('select * from table') do |record|
puts record.join(',')
end
我可以有一个空白的用户名和密码吗?连接会成功吗?我在正确的道路上吗?