Class: DBI::DBD::Mysql::Driver
- Inherits:
-
BaseDriver
- Object
- BaseDriver
- DBI::DBD::Mysql::Driver
- Includes:
- Util
- Defined in:
- lib/dbd/mysql/driver.rb
Overview
Models the DBI::BaseDriver API to create DBI::DriverHandle objects.
Instance Method Summary collapse
- #__createdb(db, host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
- #__dropdb(db, host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
- #__reload(host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
- #__shutdown(host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
-
#connect(dbname, user, auth, attr) ⇒ Object
Parameters in the dbname as follows:.
- #data_sources ⇒ Object
- #default_user ⇒ Object
-
#initialize ⇒ Driver
constructor
A new instance of Driver.
Constructor Details
#initialize ⇒ Driver
Returns a new instance of Driver.
8 9 10 |
# File 'lib/dbd/mysql/driver.rb', line 8 def initialize super("0.4.0") end |
Instance Method Details
#__createdb(db, host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
88 89 90 91 92 93 94 95 |
# File 'lib/dbd/mysql/driver.rb', line 88 def __createdb(db, host, user, password, port=nil, sock=nil, flag=nil) handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) begin handle.create_db(db) ensure handle.close if handle end end |
#__dropdb(db, host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
97 98 99 100 101 102 103 104 |
# File 'lib/dbd/mysql/driver.rb', line 97 def __dropdb(db, host, user, password, port=nil, sock=nil, flag=nil) handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) begin handle.drop_db(db) ensure handle.close if handle end end |
#__reload(host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
115 116 117 118 119 120 121 122 |
# File 'lib/dbd/mysql/driver.rb', line 115 def __reload(host, user, password, port=nil, sock=nil, flag=nil) handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) begin handle.reload ensure handle.close if handle end end |
#__shutdown(host, user, password, port = nil, sock = nil, flag = nil) ⇒ Object
106 107 108 109 110 111 112 113 |
# File 'lib/dbd/mysql/driver.rb', line 106 def __shutdown(host, user, password, port=nil, sock=nil, flag=nil) handle = ::Mysql.connect(host, user, password, nil, port, sock, flag) begin handle.shutdown ensure handle.close if handle end end |
#connect(dbname, user, auth, attr) ⇒ Object
Parameters in the dbname as follows:
-
host: host to connect to
-
port: port to connect to
-
socket: connect to a specific unix socket instead of a TCP socket.
-
flag: an OR’d collection of flags to pass to the lower-level connection attempt.
-
mysql_read_default_file: FIXME
-
mysql_read_default_group: FIXME
-
mysql_compression: FIXME
-
mysql_local_infile: FIXME
-
mysql_client_found_rows: FIXME boolean, modifies the ‘flag’ setting above.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/dbd/mysql/driver.rb', line 30 def connect(dbname, user, auth, attr) # connect to database server hash = DBI::Utils.parse_params(dbname) hash['host'] ||= 'localhost' # these two connection parameters should be passed as numbers hash['port'] = hash['port'].to_i unless hash['port'].nil? hash['flag'] = hash['flag'].nil? ? 0 : hash['flag'] = hash['flag'].to_i handle = ::Mysql.init # Look for options in connect string to be handled # through mysql_options() before connecting !hash['mysql_read_default_file'].nil? and handle.(::Mysql::READ_DEFAULT_FILE, hash['mysql_read_default_file']) !hash['mysql_read_default_group'].nil? and handle.(::Mysql::READ_DEFAULT_GROUP, hash['mysql_read_default_group']) # The following options can be handled either using mysql_options() # or in the flag argument to connect(). hash['mysql_compression'].to_i != 0 and handle.(::Mysql::OPT_COMPRESS, nil) hash['mysql_local_infile'].to_i != 0 and handle.(::Mysql::OPT_LOCAL_INFILE, true) # Look for options to be handled in the flags argument to connect() if !hash['mysql_client_found_rows'].nil? if hash['mysql_client_found_rows'].to_i != 0 hash['flag'] |= ::Mysql::CLIENT_FOUND_ROWS else hash['flag'] &= ~::Mysql::CLIENT_FOUND_ROWS end end handle.connect(hash['host'], user, auth, hash['database'], hash['port'], hash['socket'], hash['flag']) return Database.new(handle, attr) rescue MyError => err error(err) end |
#data_sources ⇒ Object
73 74 75 76 77 78 79 80 |
# File 'lib/dbd/mysql/driver.rb', line 73 def data_sources handle = ::Mysql.new res = handle.list_dbs.collect {|db| "dbi:Mysql:database=#{db}" } handle.close return res rescue MyError => err error(err) end |
#default_user ⇒ Object
12 13 14 |
# File 'lib/dbd/mysql/driver.rb', line 12 def default_user ['', nil] end |