~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/randgen/simpipe.pl

  • Committer: Mark Atwood
  • Date: 2011-12-14 18:12:05 UTC
  • mfrom: (2465.1.4 drizzle)
  • Revision ID: me@mark.atwood.name-20111214181205-tkz0lq9c4c0ptrwo
mergeĀ lp:~brianaker/drizzle/fix-localhost

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
use DBI;
12
12
use Data::Dumper;
13
13
 
14
 
my $dsn = 'dbi:mysql:port=9306:user=root:host=127.0.0.1:database=test';
 
14
my $dsn = 'dbi:mysql:port=9306:user=root:host=localhost:database=test';
15
15
my $oracle = GenTest::SimPipe::Oracle::FullScan->new( dsn => $dsn , basedir => '/home/philips/bzr/maria-5.3' );
16
16
 
17
17
my $dbh = DBI->connect($dsn, undef, undef, { mysql_multi_statements => 1, RaiseError => 1 });