Sha256: 4d5e48dc4adee76d8031a97445a6dfc5299446c4dd4629f91a8acd7d9de8d8bc

Contents?: true

Size: 1.87 KB

Versions: 4

Compression:

Stored size: 1.87 KB

Contents

# This script demonstrates how to link a field in the table to an entire
# record from another table (i.e. a "one to one" relationship in database
# lingo).

# In the example below, we have a department table.  For each department
# record, the manager field is actually a reference to a record from the
# person table. This allows us to reference the linked person record
# through the manager field.

require 'kirbybase'

db = KirbyBase.new

# To run as a client in a multi-user environment, uncomment next line.
# Also, make sure kbserver.rb is running.
#db = KirbyBase.new do |d|
#    d.connect_type = :client
#    d.host = 'localhost'
#    d.port = 44444
#end

# If tables exists, delete them.
db.drop_table(:department) if db.table_exists?(:department)
db.drop_table(:person) if db.table_exists?(:person)

# Create a person table. Create lookup table first before the table that
# uses the lookup table, so that KirbyBase can take advantage of any
# indexes.
person_tbl = db.create_table(:person,
 :person_id, :String,
 :name, :String,
 :phone, :String
)

# Insert some person records.
person_tbl.insert('000-13-5031', 'John Smith', '512.555.1234')
person_tbl.insert('010-10-9999', 'Jane Doe', '313.724.4230')

# Create a table.  We are telling KirbyBase that the manager field is
# to be linked to the person table.
department_tbl = db.create_table(:department,
 :dept_id, :Integer,
 :dept_name, :String,
 :manager, {:DataType=>:String, :Lookup=>[:person, :person_id]})

# Insert some department records.
department_tbl.insert(345, 'Payroll', '000-13-5031')
department_tbl.insert(442, 'Accounting', '010-10-9999')

# Print department info.  Notice how we also print info from the linked
# person record.
department_tbl.select.each do |r|
    puts "\n%s %s %s %s %s" % [r.dept_id, r.dept_name,
     r.manager.person_id, r.manager.name, r.manager.phone]
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
KirbyBase-2.5.1 examples/lookup_field_test/lookup_field_test.rb
KirbyBase-2.5 examples/lookup_field_test/lookup_field_test.rb
KirbyBase-2.5.2 examples/lookup_field_test/lookup_field_test.rb
KirbyBase-2.6 examples/lookup_field_test/lookup_field_test.rb