We need to fill this in so we can relink it

For now:

A simple example...

require 'ruport'

# define a data source
driver = "DBI:ODBC:driver=Microsoft Access Driver (*.mdb)"
filename = 'C:\\Projects\\foo\\foo.mdb'
dsn = "#{driver};dbq=#{filename}"
Ruport::Query.add_source :default, :dsn => dsn

# run a query and print results
query = Ruport::Query.new("select name, desc from project") 
table = query.result
puts table

# output it to a pdf file
File.open('foo.pdf','w') {|f| f.write table.to_pdf}