Class: JDBC::Adapters::Hsqldb

Inherits:
Object
  • Object
show all
Defined in:
lib/jdbc/adapters/hsqldb.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(host, port, user, password, schema) ⇒ Hsqldb

Returns a new instance of Hsqldb.



6
7
8
9
10
11
12
# File 'lib/jdbc/adapters/hsqldb.rb', line 6

def initialize(host, port, user, password, schema)
  @host = host
  @port = port
  @user = user
  @password = password
  @schema = schema
end

Instance Attribute Details

#hostObject (readonly)

Returns the value of attribute host.



4
5
6
# File 'lib/jdbc/adapters/hsqldb.rb', line 4

def host
  @host
end

#passwordObject (readonly)

Returns the value of attribute password.



4
5
6
# File 'lib/jdbc/adapters/hsqldb.rb', line 4

def password
  @password
end

#portObject (readonly)

Returns the value of attribute port.



4
5
6
# File 'lib/jdbc/adapters/hsqldb.rb', line 4

def port
  @port
end

#schemaObject (readonly)

Returns the value of attribute schema.



4
5
6
# File 'lib/jdbc/adapters/hsqldb.rb', line 4

def schema
  @schema
end

#userObject (readonly)

Returns the value of attribute user.



4
5
6
# File 'lib/jdbc/adapters/hsqldb.rb', line 4

def user
  @user
end

Instance Method Details

#class_nameObject



18
19
20
# File 'lib/jdbc/adapters/hsqldb.rb', line 18

def class_name
  "org.hsqldb.jdbcDriver"
end

#connection_stringObject



14
15
16
# File 'lib/jdbc/adapters/hsqldb.rb', line 14

def connection_string
  "jdbc:hsqldb:mem:#{@schema}"
end