DBIx-NoSQL
view release on metacpan or search on metacpan
{
"abstract" : "NoSQL-ish overlay for an SQL database",
"author" : [
"Robert Krimen <robertkrimen@gmail.com>",
"Yanick Champoux <yanick@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 5.043, CPAN::Meta::Converter version 2.150001",
"license" : [
"perl_5"
],
"meta-spec" : {
---
abstract: 'NoSQL-ish overlay for an SQL database'
author:
- 'Robert Krimen <robertkrimen@gmail.com>'
- 'Yanick Champoux <yanick@cpan.org>'
build_requires:
DateTime: '0'
ExtUtils::MakeMaker: '0'
File::Spec: '0'
File::Temp: '0'
IO::Handle: '0'
IPC::Open3: '0'
Makefile.PL view on Meta::CPAN
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.043.
use strict;
use warnings;
use 5.006;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "NoSQL-ish overlay for an SQL database",
"AUTHOR" => "Robert Krimen <robertkrimen\@gmail.com>, Yanick Champoux <yanick\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "DBIx-NoSQL",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "DBIx::NoSQL",
"PREREQ_PM" => {
"Carp" => 0,
NAME
DBIx::NoSQL - NoSQL-ish overlay for an SQL database
VERSION
version 0.0020
SYNOPSIS
use DBIx::NoSQL;
my $store = DBIx::NoSQL->connect( 'store.sqlite' );
$store->set( 'Artist' => 'Smashing Pumpkins' => {
README.mkdn view on Meta::CPAN
# NAME
DBIx::NoSQL - NoSQL-ish overlay for an SQL database
# VERSION
version 0.0021
# SYNOPSIS
```perl
use DBIx::NoSQL;
<?xml version="1.0" encoding="UTF-8" ?>
<Project
xmlns="http://usefulinc.com/ns/doap#"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<name>DBIx-NoSQL</name>
<shortdesc>NoSQL-ish overlay for an SQL database</shortdesc>
<developer>
<foaf:Person>
<foaf:name>Robert Krimen</foaf:name>
<foaf:mbox rdf:resource="mailto:robertkrimen@gmail.com" />
</foaf:Person>
</developer>
<developer>
<foaf:Person>
<foaf:name>Yanick Champoux</foaf:name>
<foaf:mbox rdf:resource="mailto:yanick@cpan.org" />
lib/DBIx/NoSQL.pm view on Meta::CPAN
package DBIx::NoSQL;
our $AUTHORITY = 'cpan:YANICK';
$DBIx::NoSQL::VERSION = '0.0021';
# ABSTRACT: NoSQL-ish overlay for an SQL database
use strict;
use warnings;
use DBIx::NoSQL::Store;
sub new {
my $class = shift;
return DBIx::NoSQL::Store->new( @_ );
}
lib/DBIx/NoSQL.pm view on Meta::CPAN
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
DBIx::NoSQL - NoSQL-ish overlay for an SQL database
=head1 VERSION
version 0.0021
=head1 SYNOPSIS
use DBIx::NoSQL;
my $store = DBIx::NoSQL->connect( 'store.sqlite' );
( run in 2.115 seconds using v1.01-cache-2.11-cpan-49f99fa48dc )