Skip to content

Commit a28fe72

Browse files
author
H.Merijn Brand - Tux
committed
Spelling and versions
1 parent 86c5088 commit a28fe72

File tree

4 files changed

+35
-17
lines changed

4 files changed

+35
-17
lines changed

.aspell.local.pws

+26-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,36 @@
1-
personal_ws-1.1 en 17
2-
auth
3-
destoffset
1+
personal_ws-1.1 en 35
2+
AID
3+
ANAME
44
AutoCommit
5+
CGRP
6+
CID
57
ChopBlanks
68
DBD
79
DBI
8-
dbi
9-
lang
10-
len
11-
maxlen
10+
DIRECTKEY
11+
EXPNUM
12+
FIXEDSIZE
13+
HLI
14+
NBTREE
15+
NCLINK
16+
NHASH
17+
NPLINK
18+
NULLABLE
1219
ODBC
13-
PrintError
20+
PKEY
21+
PKEYED
1422
PV
23+
PrintError
24+
RDONLY
1525
RaiseError
1626
SV
27+
TID
28+
TNAME
1729
UTF
1830
Zervas
31+
auth
32+
dbi
33+
destoffset
34+
lang
35+
len
36+
maxlen

lib/DBD/Unify.pm

+7-7
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ X<AUTH>
10991099
11001100
my $schemas = $dd->{AUTH};
11011101
1102-
This will return a reference to a list of accessible schemas. The schemas
1102+
This will return a reference to a list of accessible schema's. The schema's
11031103
that are not accessible or do not exist (anymore) have an C<undef> entry.
11041104
11051105
Each auth entry is C<undef> or a hashref with these entries:
@@ -1126,7 +1126,7 @@ Holds the name of the schema (STRING)
11261126
=item TABLES
11271127
X<TABLES>
11281128
1129-
Holds the list of accesible table ID's in this schema (ARRAY of INTEGERs)
1129+
Holds the list of accessible table ID's in this schema (ARRAY of INTEGER's)
11301130
11311131
say join ", " => $schemas->[3]{TABLES};
11321132
# 43, 45, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61
@@ -1251,12 +1251,12 @@ X<OPTIONS>
12511251
=item PKEYED
12521252
X<PKEYED>
12531253
1254-
Holds a true/false indication of the table being primary keyd
1254+
Holds a true/false indication of the table being primary keyed
12551255
12561256
=item SCATTERED
12571257
X<SCATTERED>
12581258
1259-
Holds a true/false indication if the table has data scattered accross volumes
1259+
Holds a true/false indication if the table has data scattered across volumes
12601260
12611261
=item COLUMNS
12621262
X<COLUMNS>
@@ -1349,7 +1349,7 @@ Holds the true/false indication of this column allowing C<NULL> as value
13491349
say $columns->[186]{NULLABLE};
13501350
# 0
13511351
1352-
Primary keys implicitely do not allow C<NULL> values
1352+
Primary keys implicitly do not allow C<NULL> values
13531353
13541354
=item DSP_LEN
13551355
X<DSP_LEN>
@@ -1413,7 +1413,7 @@ Holds a true/false indication of the column is unique.
14131413
X<LINK>
14141414
14151415
Holds the C<CID> of the column this column links to through referential
1416-
integrety. This value is C<-1> if there is no link.
1416+
integrity. This value is C<-1> if there is no link.
14171417
14181418
say $columns->[186]{LINK};
14191419
# -1
@@ -1431,7 +1431,7 @@ this column in a link.
14311431
=item NBTREE
14321432
X<NBTREE>
14331433
1434-
Holds the number of B-tree indices the column particitates in
1434+
Holds the number of B-tree indices the column participates in
14351435
14361436
say $columns->[186]{NBTREE};
14371437
# 0

lib/DBD/Unify/GetInfo.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package DBD::Unify::GetInfo;
44
# DBI::DBD::Metadata::write_getinfo_pm v2.008696.
55
# And manually reformatted into readable style
66

7-
our $VERSION = "0.88";
7+
our $VERSION = "0.89";
88

99
use strict;
1010
use warnings;

sandbox/genMETA.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
Test::More: 0.90
7474
recommends:
7575
perl: 5.020001
76-
DBI: 1.636
76+
DBI: 1.637
7777
test_recommends:
7878
Test::More: 1.302086
7979
resources:

0 commit comments

Comments
 (0)