class Purview::RawConnections::JDBC::MySQL

Private Instance Methods

url() click to toggle source
# File lib/purview/raw_connections/jdbc/mysql.rb, line 12
def url
  "jdbc:mysql://#{host}#{port && ":#{port}"}/#{database}"
end
username() click to toggle source
Calls superclass method Purview::RawConnections::Base#username
# File lib/purview/raw_connections/jdbc/mysql.rb, line 16
def username
  super || ENV['USER'] || Etc.getlogin
end