1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# $Id: test.rb,v 1.8 2015/03/25 10:53:59 chw Exp chw $
#
# Execute in ruby-odbc top directory.
#
# ruby test.rb "mysql-DSN" "mysql-user" "mysql-password"
#
# Test creates and deletes table "test" in that DSN.
require 'odbc'
$dsn = ARGV.shift
$uid = ARGV.shift
$pwd = ARGV.shift
begin
Dir.glob("[0-9]*.rb").sort.each do |f|
f =~ /\d+(.*)\.rb$/
print $1 + "."*(20-$1.length)
$stdout.flush
load f
print "ok\n"
end
ensure
begin
$c.drop_all unless $c.class != ODBC::Database
rescue
end
begin
ODBC.connect($dsn, $uid, $pwd).do("drop table test")
rescue
end
end
|