- Update to 0.06001
PR: ports/95571 Submitted by: maintainer
This commit is contained in:
parent
8ca92ed278
commit
c33cc2df25
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=159280
4 changed files with 15 additions and 11 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= DBIx-Class
|
||||
PORTVERSION= 0.06000
|
||||
PORTVERSION= 0.06001
|
||||
CATEGORIES= databases perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= DBIx
|
||||
|
@ -42,6 +42,7 @@ MAN3= DBIx::Class.3 \
|
|||
DBIx::Class::Manual.3 \
|
||||
DBIx::Class::Manual::Component.3 \
|
||||
DBIx::Class::Manual::Cookbook.3 \
|
||||
DBIx::Class::Manual::DocMap.3 \
|
||||
DBIx::Class::Manual::Example.3 \
|
||||
DBIx::Class::Manual::Glossary.3 \
|
||||
DBIx::Class::Manual::Intro.3 \
|
||||
|
@ -69,6 +70,7 @@ MAN3= DBIx::Class.3 \
|
|||
DBIx::Class::Storage::DBI::Cursor.3 \
|
||||
DBIx::Class::Storage::DBI::DB2.3 \
|
||||
DBIx::Class::Storage::DBI::MSSQL.3 \
|
||||
DBIx::Class::Storage::DBI::MultiDistinctEmulation.3 \
|
||||
DBIx::Class::Storage::DBI::Oracle.3 \
|
||||
DBIx::Class::Storage::DBI::Pg.3 \
|
||||
DBIx::Class::Storage::DBI::SQLite.3 \
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (DBIx-Class-0.06000.tar.gz) = 63fec9467b0c7b23d3e9e7e74d89419f
|
||||
SHA256 (DBIx-Class-0.06000.tar.gz) = f8f06756ac0d752b02adf0b96559d15f59847b8d48f122344e75dff9621f216d
|
||||
SIZE (DBIx-Class-0.06000.tar.gz) = 128808
|
||||
MD5 (DBIx-Class-0.06001.tar.gz) = 7b84fe7cb6dfbb8caa677cd34af10f11
|
||||
SHA256 (DBIx-Class-0.06001.tar.gz) = 669ef174c242c88639e61648220c9e2c8a1308e67614474cc9b1b86f77759adc
|
||||
SIZE (DBIx-Class-0.06001.tar.gz) = 147066
|
||||
|
|
|
@ -7,13 +7,13 @@ retrieving related records from multiple tables in a single query, JOIN, LEFT
|
|||
JOIN, COUNT, DISTINCT, GROUP BY and HAVING support.
|
||||
|
||||
DBIx::Class can handle multi-column primary and foreign keys, complex queries
|
||||
and database-level paging, and does its best to only query the database when it
|
||||
actually needs to in order to return something you've directly asked for. If a
|
||||
resultset is used as an iterator it only fetches rows off the statement handle
|
||||
as requested in order to minimise memory usage. It has auto-increment support
|
||||
for SQLite, MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is known to be
|
||||
used in production on at least the first four, and is fork- and thread-safe
|
||||
out of the box (although your DBD may not be).
|
||||
and database-level paging, and does its best to only query the database in
|
||||
order to return something you've directly asked for. If a resultset is used as
|
||||
an iterator it only fetches rows off the statement handle as requested in order
|
||||
to minimise memory usage. It has auto-increment support for SQLite, MySQL,
|
||||
PostgreSQL, Oracle, SQL Server and DB2 and is known to be used in production
|
||||
on at least the first four, and is fork- and thread-safe out of the box
|
||||
(although your DBD may not be).
|
||||
|
||||
This project is still under rapid development, so features added in the latest
|
||||
major release may not work 100% yet - check the Changes if you run into
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
%%SITE_PERL%%/DBIx/Class/Manual.pod
|
||||
%%SITE_PERL%%/DBIx/Class/Manual/Component.pod
|
||||
%%SITE_PERL%%/DBIx/Class/Manual/Cookbook.pod
|
||||
%%SITE_PERL%%/DBIx/Class/Manual/DocMap.pod
|
||||
%%SITE_PERL%%/DBIx/Class/Manual/Example.pod
|
||||
%%SITE_PERL%%/DBIx/Class/Manual/Glossary.pod
|
||||
%%SITE_PERL%%/DBIx/Class/Manual/Intro.pod
|
||||
|
@ -69,6 +70,7 @@
|
|||
%%SITE_PERL%%/DBIx/Class/Storage/DBI/Cursor.pm
|
||||
%%SITE_PERL%%/DBIx/Class/Storage/DBI/DB2.pm
|
||||
%%SITE_PERL%%/DBIx/Class/Storage/DBI/MSSQL.pm
|
||||
%%SITE_PERL%%/DBIx/Class/Storage/DBI/MultiDistinctEmulation.pm
|
||||
%%SITE_PERL%%/DBIx/Class/Storage/DBI/Oracle.pm
|
||||
%%SITE_PERL%%/DBIx/Class/Storage/DBI/Pg.pm
|
||||
%%SITE_PERL%%/DBIx/Class/Storage/DBI/SQLite.pm
|
||||
|
|
Loading…
Reference in a new issue