App-AutoCRUD
view release on metacpan or search on metacpan
examples/Sakila/README view on Meta::CPAN
This sample database was copied from the Sakila project
(https://code.google.com/p/sakila-sample-database-ports/)
Sakila example database was originally developed by Mike Hillyer of the MySQL AB documentation team.
This project is designed to help database administrators to decide which database to use for development of new products The user can run the same SQL against different kind of databases and compare the performance
License: http://opensource.org/licenses/BSD-3-Clause
The sakila.sqlite file is not included in the App::AutoCRUD distribution
because it is too big; but it can be downloaded from
"http://sakila-sample-database-ports.googlecode.com/svn/trunk/ sakila-sample-database-ports/sqlite-sakila-db/sqlite-sakila.sq"
inc/Module/Install.pm view on Meta::CPAN
use 5.006;
use strict 'vars';
use Cwd ();
use File::Find ();
use File::Path ();
use vars qw{$VERSION $MAIN};
BEGIN {
# All Module::Install core packages now require synchronised versions.
# This will be used to ensure we don't accidentally load old or
# different versions of modules.
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
$VERSION = '1.19';
# Storage for the pseudo-singleton
$MAIN = undef;
*inc::Module::Install::VERSION = *VERSION;
lib/App/AutoCRUD.pm view on Meta::CPAN
a comparison operator (ex C<< > 2013 >>), or a BETWEEN clause
(ex C<< BETWEEN 2 AND 6 >>).
The full syntax accepted for such criteria is documented
in L<SQL::Abstract::FromQuery>. That syntax is customizable,
so if you want to support additional fancy operators for your
database, you might do so by augmenting or subclassing the grammar.
=head3 Columns to display
On the right of each column input field is a checkbox to decide
if this column should be displayed in the results or not.
If the configuration specifies column groups, each column group
also has a checkbox to simultaneously check all columns in that group.
Finally, there is also a global checkbox to check/uncheck everything.
If nothing is checked (which is the default), this will be implicitly
interpreted as "SELECT *", i.e. showing everything.
=head3 Presentation parameters
Presentation parameters include :
lib/App/AutoCRUD/ConfigDomain.pm view on Meta::CPAN
=item readonly
Boolean flag; if true, data mutation operations will be forbidden
(i.e. no insert, update or delete).
=item default
Hashref of various default values that may be used by inner modules.
Currently there is only one example : C<page_size>, used by
L<App::AutoCRUD::Controller::Table> to decide how many
records per page will be displayed.
=back
=head2 datasources
datasources :
Chinook :
dbh:
connect:
( run in 0.995 second using v1.01-cache-2.11-cpan-de7293f3b23 )