Skip to content

Commit

Permalink
remove remaining references to FakeDBI and FakeDBD
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Olszewski committed Jul 22, 2010
1 parent 18b2c19 commit 1fa4314
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
=begin pod =begin pod


=head1 NAME =head1 NAME
FakeDBI - a simple database interface for Rakudo Perl 6 MiniDBI - a simple database interface for Rakudo Perl 6


=head1 DESCRIPTION =head1 DESCRIPTION
The roadmap for DBI v2 L<http://search.cpan.org/~timb/DBI/Roadmap.pod> The roadmap for DBI v2 L<http://search.cpan.org/~timb/DBI/Roadmap.pod>
Expand All @@ -10,15 +10,15 @@ Specifically there is a Parrot DBDI project that will give the same DBD
facilities to all Parrot based languages. See also facilities to all Parrot based languages. See also
http://www.nntp.perl.org/group/perl.perl6.language/2005/07/msg22054.html http://www.nntp.perl.org/group/perl.perl6.language/2005/07/msg22054.html


Because no code is available yet, FakeDBI plans to temporarily fill the Because no code is available yet, MiniDBI plans to temporarily fill the
gap, being a subset of the Perl 5 DBI v1 in Perl 6. Although this not gap, being a subset of the Perl 5 DBI v1 in Perl 6. Although this not
on the DBI v2 roadmap, let's say if it looks like a DBI, and it talks on the DBI v2 roadmap, let's say if it looks like a DBI, and it talks
like a DBI, then it is a DBI. The links above suggest that some of the like a DBI, then it is a DBI. The links above suggest that some of the
development done here might even become part of the official DBI v2! development done here might even become part of the official DBI v2!


=head1 DBD CLASSES =head1 DBD CLASSES
Until there is a benefit in doing it otherwise, the FakeDBD drivers stay Until there is a benefit in doing it otherwise, the MiniDBD drivers stay
and install together with the main FakeDBI.pm6 in a single project. The and install together with the main MiniDBI.pm6 in a single project. The
first DBD is for MySQL, there will probably soon be SQLite, Postgres and first DBD is for MySQL, there will probably soon be SQLite, Postgres and
FreeTDS. An AnyData driver for memory or file formats such as YAML or FreeTDS. An AnyData driver for memory or file formats such as YAML or
XML is also planned. XML is also planned.
Expand Down Expand Up @@ -47,10 +47,10 @@ Numbers with decimal points are passed to the database server as quoted
strings, because of far-too-simple checking in execute(). strings, because of far-too-simple checking in execute().


=head1 SEE ALSO =head1 SEE ALSO
The Perl 6 Pod in the L<doc:FakeDBI> module. The Perl 6 Pod in the L<doc:MiniDBI> module.
The Perl 5 L<doc:DBI> and L<doc:DBI::DBD>. The Perl 5 L<doc:DBI> and L<doc:DBI::DBD>.


This README and the documention of the FakeDBI and the FakeDBD modules This README and the documention of the MiniDBI and the MiniDBD modules
are in the proposed Pod6 format. The reasons are that Perl 6 does not are in the proposed Pod6 format. The reasons are that Perl 6 does not
allow any other kind of Pod, and that Pod6 needs more examples. View it allow any other kind of Pod, and that Pod6 needs more examples. View it
with an appropriate formatter if your system has one. with an appropriate formatter if your system has one.
Expand Down
2 changes: 1 addition & 1 deletion t/30-PgPir-specific.t
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ my $user = 'testuser';
my $password = 'testpass'; my $password = 'testpass';
# my $password = 'Cho5thae'; # my $password = 'Cho5thae';


my $test_dsn = "FakeDBI:{$mdriver}:dbname=$database;host=$host;port=$port"; my $test_dsn = "MiniDBI:{$mdriver}:dbname=$database;host=$host;port=$port";


my $drh = MiniDBI.install_driver($mdriver); my $drh = MiniDBI.install_driver($mdriver);
ok $drh, 'Install driver'; ok $drh, 'Install driver';
Expand Down

0 comments on commit 1fa4314

Please sign in to comment.