class DBI::DBD::OCI8::Driver

:nodoc:

def connect( dbname, user, auth, attr )

def connect( dbname, user, auth, attr )
  handle = ::OCI8.new(user, auth, dbname, attr['Privilege'])
  handle.non_blocking = true if attr['NonBlocking']
  return Database.new(handle, attr)
rescue OCIException => err
  raise_dbierror(err)
end

def default_user

(contributed by Dan Fitch)
external OS authentication
def default_user
  [nil, nil]
end

def initialize

def initialize
  super(USED_DBD_VERSION)
end