Result for 57F3E680E0BEE0AC49A68696CACB96196B60CA7C

Query result

Key Value
FileName./usr/share/doc/libmojo-sqlite-perl/examples/blog/lib/Blog/Controller/Posts.pm
FileSize1221
MD5669605A9DD3004D3257B707E23865499
SHA-157F3E680E0BEE0AC49A68696CACB96196B60CA7C
SHA-256EF11E04D43627E8A975E2F6532670F17F04E1602FE00DFCC4E9C0EBAF0D94834
SSDEEP24:PVefhO/3+st8lhIwfhOuVtmwKL4hpaVl+QKuTnjV33K3kH:Psfk/us8lhZfkuVt9KL4PaVl3KurjV3B
TLSHT12521F490B1A2D3456DF269B702C1E196ACEF0C472D5E05A2B53D90B50FC2EF3978B04C
hashlookup:parent-total13
hashlookup:trust100

Network graph view

Parents (Total: 13)

The searched file hash is included in 13 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD5AA533FEE618D894D04F124EAA1871DA8
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations. Database and statement handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection timeouts gracefully by holding on to them only for short amounts of time. use Mojolicious::Lite; use Mojo::SQLite; helper sqlite => sub { state $sql = Mojo::SQLite->new('sqlite:test.db') }; get '/' => sub { my $c = shift; my $db = $c->sqlite->db; $c->render(json => $db->query('select datetime("now","localtime") as now')->hash); }; app->start; In this example application, we create a 'sqlite' helper to store a Mojo::SQLite object. Our action calls that helper and uses the method Mojo::SQLite/"db" to dequeue a Mojo::SQLite::Database object from the connection pool. Then we use the method Mojo::SQLite::Database/"query" to execute an at http://www.postgresql.org/docs/current/static/sql.html statement, which returns a Mojo::SQLite::Results object. And finally we call the method Mojo::SQLite::Results/"hash" to retrieve the first row as a hash reference. All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can write at a time). You can prevent this mode from being enabled by passing the option 'no_wal', but note that this is incompatible with SQLite databases that have already had WAL mode enabled. See http://sqlite.org/wal.html and DBD::SQLite/"journal_mode" for more information. my $pid = fork || die $!; say $sql->db->query('select datetime("now","localtime") as time')->hash->{time}; exit unless $pid; All cached database handles will be reset automatically if a new process has been forked, this allows multiple processes to share the same Mojo::SQLite object safely. Any database errors will throw an exception as 'RaiseError' is automatically enabled, so use 'eval' or Try::Tiny to catch them. This makes transactions with Mojo::SQLite::Database/"begin" easy. While passing a file path of ':memory:' (or a custom "dsn" with 'mode=memory') will create a temporary database, in-memory databases cannot be shared between connections, so subsequent calls to "db" may return connections to completely different databases. For a temporary database that can be shared between connections and processes, pass a file path of ':temp:' to store the database in a temporary directory (this is the default), or consider constructing a temporary directory yourself with File::Temp if you need to reuse the filename. A temporary directory allows SQLite to create at https://www.sqlite.org/tempfiles.html safely. use File::Spec::Functions 'catfile'; use File::Temp; use Mojo::SQLite; my $tempdir = File::Temp->newdir; # Deleted when object goes out of scope my $tempfile = catfile $tempdir, 'test.db'; my $sql = Mojo::SQLite->new->from_filename($tempfile);
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-SQLite
PackageReleasebp153.1.12
PackageVersion3.000
SHA-1948AC24EF84960350362A1C325D6BB16C73CDDB2
SHA-256B6A36EE5D4C48A40804067038524D9381CF1066698D989F1670A39E2D7271355
Key Value
MD53B633928276EF37D13781CEAA6928A97
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations.
PackageNameperl-Mojo-SQLite
PackageReleaselp150.2.1
PackageVersion3.002
SHA-1CEEF8E925EC40A23D9E64E3AD771244E6459BFF6
SHA-2563B79DC9F0B7A412D44C997EAFCCFEBD6E0261D103BD4173AB078320782B93052
Key Value
MD5162732DA2A3D20D619B3920F568315D2
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations. Database and statement handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection timeouts gracefully by holding on to them only for short amounts of time. use Mojolicious::Lite; use Mojo::SQLite; helper sqlite => sub { state $sql = Mojo::SQLite->new('sqlite:test.db') }; get '/' => sub { my $c = shift; my $db = $c->sqlite->db; $c->render(json => $db->query('select datetime("now","localtime") as now')->hash); }; app->start; In this example application, we create a 'sqlite' helper to store a Mojo::SQLite object. Our action calls that helper and uses the method Mojo::SQLite/"db" to dequeue a Mojo::SQLite::Database object from the connection pool. Then we use the method Mojo::SQLite::Database/"query" to execute an at http://www.postgresql.org/docs/current/static/sql.html statement, which returns a Mojo::SQLite::Results object. And finally we call the method Mojo::SQLite::Results/"hash" to retrieve the first row as a hash reference. All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can write at a time). You can prevent this mode from being enabled by passing the option 'no_wal', but note that this is incompatible with SQLite databases that have already had WAL mode enabled. See http://sqlite.org/wal.html and DBD::SQLite/"journal_mode" for more information. my $pid = fork || die $!; say $sql->db->query('select datetime("now","localtime") as time')->hash->{time}; exit unless $pid; All cached database handles will be reset automatically if a new process has been forked, this allows multiple processes to share the same Mojo::SQLite object safely. Any database errors will throw an exception as 'RaiseError' is automatically enabled, so use 'eval' or Try::Tiny to catch them. This makes transactions with Mojo::SQLite::Database/"begin" easy. While passing a file path of ':memory:' (or a custom "dsn" with 'mode=memory') will create a temporary database, in-memory databases cannot be shared between connections, so subsequent calls to "db" may return connections to completely different databases. For a temporary database that can be shared between connections and processes, pass a file path of ':temp:' to store the database in a temporary directory (this is the default), or consider constructing a temporary directory yourself with File::Temp if you need to reuse the filename. A temporary directory allows SQLite to create at https://www.sqlite.org/tempfiles.html safely. use File::Spec::Functions 'catfile'; use File::Temp; use Mojo::SQLite; my $tempdir = File::Temp->newdir; # Deleted when object goes out of scope my $tempfile = catfile $tempdir, 'test.db'; my $sql = Mojo::SQLite->new->from_filename($tempfile);
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-SQLite
PackageReleaselp151.2.1
PackageVersion3.000
SHA-10C34E99FA073D337605CB10F35B7A7852087D9EB
SHA-25605124A6A414027BBDF64CA9FB31377C22ED52F2354C83000ECB8C97E26BEAFCF
Key Value
FileSize40408
MD51F0FEBAF95908B684FDBE6FE3854C2EF
PackageDescriptionmodule to make PostgreSQL fun to use with Mojolicious Mojo::Pg is a wrapper around DBD::Pg that makes PostgreSQL a lot of fun to use with the Mojolicious real-time web framework. . Features of note include URL-based database connections, automatic transaction rollback support, database migrations written in plain SQL, and asynchronous triggers. . Support for Mojo::Pg is present in the Minion job queue for Mojolicious.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibmojo-pg-perl
PackageSectionperl
PackageVersion4.04-1
SHA-1BCC724DD478EAD7CF45550EFDFFFA1BF490BEBBE
SHA-256F56CC989D2029BCF69D2F4D9AAFDBAF925FD06562DFC683A3F156B00068F4983
Key Value
MD51AC7AE4343FB8D64C530C268B6C7B778
PackageArchnoarch
PackageDescriptionMojo::Pg is a tiny wrapper around DBD::Pg that makes at http://www.postgresql.org a lot of fun to use with the at http://mojolicious.org real-time web framework. Perform queries blocking and non-blocking, use all at https://www.postgresql.org/docs/current/static/sql.html PostgreSQL has to offer, generate CRUD queries from data structures, manage your database schema with migrations and build scalable real-time web applications with the publish/subscribe pattern.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-Pg
PackageReleasebp153.1.13
PackageVersion4.08
SHA-1F4F8AD9D899B2C4B486496224D24553122371779
SHA-25665AC2B2F9716D50DDEF7E3B50F39F6127D613685F89A58D171419EC8C1D24540
Key Value
FileSize38166
MD5F61DD22D5CE9F07CC644D136C383279C
PackageDescriptionmodule to make PostgreSQL fun to use with Mojolicious Mojo::Pg is a wrapper around DBD::Pg that makes PostgreSQL a lot of fun to use with the Mojolicious real-time web framework. . Features of note include URL-based database connections, automatic transaction rollback support, database migrations written in plain SQL, and asynchronous triggers. . Support for Mojo::Pg is present in the Minion job queue for Mojolicious.
PackageMaintainerDebian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
PackageNamelibmojo-pg-perl
PackageSectionperl
PackageVersion2.35-1
SHA-1B5B2603F595C821C4E8733C571F94C305589F87B
SHA-256076288D97D1F590EB946D15576BDB2CB3C88A839052E60676A90E579750AA280
Key Value
MD52565F019472C578945990FD2805FAC9F
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations. Database and statement handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection timeouts gracefully by holding on to them only for short amounts of time. use Mojolicious::Lite; use Mojo::SQLite; helper sqlite => sub { state $sql = Mojo::SQLite->new('sqlite:test.db') }; get '/' => sub { my $c = shift; my $db = $c->sqlite->db; $c->render(json => $db->query('select datetime("now","localtime") as now')->hash); }; app->start; In this example application, we create a 'sqlite' helper to store a Mojo::SQLite object. Our action calls that helper and uses the method Mojo::SQLite/"db" to dequeue a Mojo::SQLite::Database object from the connection pool. Then we use the method Mojo::SQLite::Database/"query" to execute an at http://www.postgresql.org/docs/current/static/sql.html statement, which returns a Mojo::SQLite::Results object. And finally we call the method Mojo::SQLite::Results/"hash" to retrieve the first row as a hash reference. All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can write at a time). You can prevent this mode from being enabled by passing the option 'no_wal', but note that this is incompatible with SQLite databases that have already had WAL mode enabled. See http://sqlite.org/wal.html and DBD::SQLite/"journal_mode" for more information. my $pid = fork || die $!; say $sql->db->query('select datetime("now","localtime") as time')->hash->{time}; exit unless $pid; All cached database handles will be reset automatically if a new process has been forked, this allows multiple processes to share the same Mojo::SQLite object safely. Any database errors will throw an exception as 'RaiseError' is automatically enabled, so use 'eval' or Try::Tiny to catch them. This makes transactions with Mojo::SQLite::Database/"begin" easy. While passing a file path of ':memory:' (or a custom "dsn" with 'mode=memory') will create a temporary database, in-memory databases cannot be shared between connections, so subsequent calls to "db" may return connections to completely different databases. For a temporary database that can be shared between connections and processes, pass a file path of ':temp:' to store the database in a temporary directory (this is the default), or consider constructing a temporary directory yourself with File::Temp if you need to reuse the filename. A temporary directory allows SQLite to create at https://www.sqlite.org/tempfiles.html safely. use File::Spec::Functions 'catfile'; use File::Temp; use Mojo::SQLite; my $tempdir = File::Temp->newdir; # Deleted when object goes out of scope my $tempfile = catfile $tempdir, 'test.db'; my $sql = Mojo::SQLite->new->from_filename($tempfile);
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-SQLite
PackageReleaselp152.3.2
PackageVersion3.000
SHA-1682017710A0E1676F78FB2CD225730F8D561B4D1
SHA-256FB2EEC0B22F2CF5B4AC38F23BC005462CA5568AFC70E2A6658A49BBF1A6CFA49
Key Value
FileSize45456
MD51A306881C7BB8397BCF81CAF8C7A5B77
PackageDescriptiontiny Mojolicious wrapper for SQLite Mojo::SQLite is a tiny wrapper around DBD::SQLite that makes SQLite a lot of fun to use with the Mojolicious real-time web framework. Use all SQL features SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibmojo-sqlite-perl
PackageSectionperl
PackageVersion3.003-1
SHA-141B4C7E5C12B713915D5C2EFB71B7D138A3E3744
SHA-256EDFB2077DD7792B1633C4043E1D4B1450114E38B7450A52D11422B678AAF8BEA
Key Value
MD54DE9168BBC76AFD4EE6CA36D0F994C64
PackageArchnoarch
PackageDescriptionMojo::Pg is a tiny wrapper around DBD::Pg that makes at http://www.postgresql.org a lot of fun to use with the at http://mojolicious.org real-time web framework. Perform queries blocking and non-blocking, use all at https://www.postgresql.org/docs/current/static/sql.html PostgreSQL has to offer, generate CRUD queries from data structures, manage your database schema with migrations and build scalable real-time web applications with the publish/subscribe pattern.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-Pg
PackageReleaselp151.2.1
PackageVersion4.08
SHA-18C7E6F838380173681C27FE0F95F48D5A5D9F146
SHA-256D8A532D8DF6C987C4D6E675FB7C5994B399A19B9911F943D8A79E8ADFF91EEFE
Key Value
MD5ABA4760A6EB5C9E0F052F157BC507FAA
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations. Database and statement handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection timeouts gracefully by holding on to them only for short amounts of time. use Mojolicious::Lite; use Mojo::SQLite; helper sqlite => sub { state $sql = Mojo::SQLite->new('sqlite:test.db') }; get '/' => sub { my $c = shift; my $db = $c->sqlite->db; $c->render(json => $db->query('select datetime("now","localtime") as now')->hash); }; app->start; In this example application, we create a 'sqlite' helper to store a Mojo::SQLite object. Our action calls that helper and uses the method Mojo::SQLite/"db" to dequeue a Mojo::SQLite::Database object from the connection pool. Then we use the method Mojo::SQLite::Database/"query" to execute an at http://www.postgresql.org/docs/current/static/sql.html statement, which returns a Mojo::SQLite::Results object. And finally we call the method Mojo::SQLite::Results/"hash" to retrieve the first row as a hash reference. All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can write at a time). You can prevent this mode from being enabled by passing the option 'no_wal', but note that this is incompatible with SQLite databases that have already had WAL mode enabled. See http://sqlite.org/wal.html and DBD::SQLite/"journal_mode" for more information. my $pid = fork || die $!; say $sql->db->query('select datetime("now","localtime") as time')->hash->{time}; exit unless $pid; All cached database handles will be reset automatically if a new process has been forked, this allows multiple processes to share the same Mojo::SQLite object safely. Any database errors will throw an exception as 'RaiseError' is automatically enabled, so use 'eval' or Try::Tiny to catch them. This makes transactions with Mojo::SQLite::Database/"begin" easy. While passing a file path of ':memory:' (or a custom "dsn" with 'mode=memory') will create a temporary database, in-memory databases cannot be shared between connections, so subsequent calls to "db" may return connections to completely different databases. For a temporary database that can be shared between connections and processes, pass a file path of ':temp:' to store the database in a temporary directory (this is the default), or consider constructing a temporary directory yourself with File::Temp if you need to reuse the filename. A temporary directory allows SQLite to create at https://www.sqlite.org/tempfiles.html safely. use File::Spec::Functions 'catfile'; use File::Temp; use Mojo::SQLite; my $tempdir = File::Temp->newdir; # Deleted when object goes out of scope my $tempfile = catfile $tempdir, 'test.db'; my $sql = Mojo::SQLite->new->from_filename($tempfile);
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-SQLite
PackageReleaselp150.1.3
PackageVersion3.000
SHA-1B0F91298FBE08D4BF11A8BF25D6C9CA957C44A40
SHA-256623A0B317A8CEC20D60F26212E23ECB329DB4994EF16751A05E38D6BBA7E90EC
Key Value
FileSize47436
MD572019E01606388E5895FFE8A12BAE31C
PackageDescriptiontiny Mojolicious wrapper for SQLite Mojo::SQLite is a tiny wrapper around DBD::SQLite that makes SQLite a lot of fun to use with the Mojolicious real-time web framework. Use all SQL features SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations.
PackageMaintainerDebian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
PackageNamelibmojo-sqlite-perl
PackageSectionperl
PackageVersion3.001-2
SHA-13FA1410109BC15B656FA45165D40425E1FA9B3C6
SHA-2567E1CDBC24800A381ADB474823829564496D61535DBCCB6B55475BFA6B5134950
Key Value
MD57144EE33F2AC656DEFFE2886B51F4A32
PackageArchnoarch
PackageDescriptionMojo::Pg is a tiny wrapper around DBD::Pg that makes at http://www.postgresql.org a lot of fun to use with the at http://mojolicious.org real-time web framework. Perform queries blocking and non-blocking, use all at https://www.postgresql.org/docs/current/static/sql.html PostgreSQL has to offer, generate CRUD queries from data structures, manage your database schema with migrations and build scalable real-time web applications with the publish/subscribe pattern.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-Pg
PackageReleaselp150.1.2
PackageVersion4.08
SHA-196B017D41345313D73FEDF20D14B440E5D0E9977
SHA-256C8605E249CE74EAD46C37811109C930DA2E2A7FE63A21F0DAB9E9A6D8864F40F
Key Value
MD5F047957DF812F0E95F3BBBA768FB573D
PackageArchnoarch
PackageDescriptionMojo::Pg is a tiny wrapper around DBD::Pg that makes at http://www.postgresql.org a lot of fun to use with the at http://mojolicious.org real-time web framework. Perform queries blocking and non-blocking, use all at https://www.postgresql.org/docs/current/static/sql.html PostgreSQL has to offer, generate CRUD queries from data structures, manage your database schema with migrations and build scalable real-time web applications with the publish/subscribe pattern.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-Pg
PackageReleaselp152.3.2
PackageVersion4.08
SHA-1768FFC289F36A6744F232C453187E727C3E3EFC0
SHA-25693AD7302A2736B3BBEFC12D8B13EB51A490D0EF47D32E0B06A3525042419754D