Author: hmbrand
Date: Wed Jun 30 06:28:55 2010
New Revision: 14208
Modified:
dbi/trunk/.aspell.local.pws
dbi/trunk/lib/DBD/File.pm
dbi/trunk/lib/DBD/File/Roadmap.pod
dbi/trunk/lib/DBI/DBD/SqlEngine.pm
dbi/trunk/lib/DBI/SQL/Nano.pm
Log:
Another round of spell checking
Modified: dbi/trunk/.aspell.local.pws
==============================================================================
--- dbi/trunk/.aspell.local.pws (original)
+++ dbi/trunk/.aspell.local.pws Wed Jun 30 06:28:55 2010
@@ -1,7 +1,16 @@
-personal_ws-1.1 en_EN 110
+personal_ws-1.1 en_EN 121
+# checked files:
+# - lib/DBD/DBM.pm
+# - lib/DBD/File.pm
+# - lib/DBD/File/Developers.pod
+# - lib/DBD/File/Roadmap.pod
+# - lib/DBI/DBD/Metadata.pm
+# - lib/DBI/DBD/SqlEngine.pm
+# - lib/DBI/SQL/Nano.pm
AIX
ALRM
Alzabo
+AnnoCPAN
API
APIs
aren
@@ -40,11 +49,15 @@
doesn
dr
drh
+dsn
DSN
Dunlop
EINTR
eval
filename
+getinfo
+GetInfo
+Goeldner
googlemail
GPL
HandleError
@@ -60,6 +73,8 @@
iso
JDBC
Jochen
+JOINs
+jrehsack
jzucker
lang
latin
@@ -71,6 +86,7 @@
LongTruncOk
lookup
lookups
+Makefile
Mergl
metadata
microsoft
@@ -84,12 +100,14 @@
Nano
nl
NULLABLE
+ODBC
pag
pre
+precompiled
readonly
refactoring
-Rehsack
rehsack
+Rehsack
serializer
serializers
Solaris
@@ -99,6 +117,7 @@
Storable
subdirectories
txt
+TypeInfo
unrecognised
usenet
UTF
Modified: dbi/trunk/lib/DBD/File.pm
==============================================================================
--- dbi/trunk/lib/DBD/File.pm (original)
+++ dbi/trunk/lib/DBD/File.pm Wed Jun 30 06:28:55 2010
@@ -896,7 +896,7 @@
f_dir => "f_fqfn",
f_ext => "f_fqfn",
f_lockfile => "f_fqfn", # forces new file2table call
-);
+ );
sub register_reset_on_modify
{
Modified: dbi/trunk/lib/DBD/File/Roadmap.pod
==============================================================================
--- dbi/trunk/lib/DBD/File/Roadmap.pod (original)
+++ dbi/trunk/lib/DBD/File/Roadmap.pod Wed Jun 30 06:28:55 2010
@@ -28,7 +28,7 @@
=item Transaction support
-While DBD::AnyData recommends explicitely committing by importing and
+While DBD::AnyData recommends explicitly committing by importing and
exporting tables, DBD::File might be enhanced in a future version to allow
transparent transactions using the temporary tables of SQL::Statement as
shadow (dirty) table.
@@ -47,7 +47,7 @@
=item SQL Engine selecting on connect
-Currently the SQL engine to use is choosen during the load of the module
+Currently the SQL engine to use is chosen during the load of the module
L<DBI::SQL::Nano>. Ideally end users will be enabled to select the engine
to use in C<< DBI->connect () >> with a special DBD::File attribute.
@@ -112,7 +112,7 @@
Provide a DBD::File derived to walk with fixed table definitions through the
file system to demonstrate how DBI / Pure Perl DBD's could handle databases
-with hierarchical structues.
+with hierarchical structures.
=item DBD::Join
Modified: dbi/trunk/lib/DBI/DBD/SqlEngine.pm
==============================================================================
--- dbi/trunk/lib/DBI/DBD/SqlEngine.pm (original)
+++ dbi/trunk/lib/DBI/DBD/SqlEngine.pm Wed Jun 30 06:28:55 2010
@@ -892,7 +892,7 @@
=head1 NAME
-DBI::DBD::SqlEngine - Base class for DBI drivers without own SQL eninge
+DBI::DBD::SqlEngine - Base class for DBI drivers without own SQL engine
=head1 SYNOPSIS
@@ -949,7 +949,7 @@
=head1 DESCRIPTION
DBI::DBD::SqlEngine abstracts the usage of SQL engines from the DBD. DBD
-authors can concentrate themself to the data retrieving they want to
+authors can concentrate themselves to the data retrieving they want to
provide.
It's strongly recommended to read L<DBD::File::Developers> and
Modified: dbi/trunk/lib/DBI/SQL/Nano.pm
==============================================================================
--- dbi/trunk/lib/DBI/SQL/Nano.pm (original)
+++ dbi/trunk/lib/DBI/SQL/Nano.pm Wed Jun 30 06:28:55 2010
@@ -988,7 +988,7 @@
Tim Bunce provided the original idea for this module, helped me out of the
tangled trap of namespace, and provided help and advice all along the way.
-Although I wrote it from the ground up, it is based on Jochen Weidmann's
+Although I wrote it from the ground up, it is based on Jochen Wiedmann's
original design of SQL::Statement, so much of the credit for the API goes
to him.