Result for 4ADC78D2E5532BC5BFBD3CEFB30A74A45D58B2C7

Query result

Key Value
FileName./usr/share/doc/packages/perl-Mojo-SQLite/examples/blog/t/blog.t
FileSize1841
MD5812A4DB7A1ABEC80C5FE64A90551912F
SHA-14ADC78D2E5532BC5BFBD3CEFB30A74A45D58B2C7
SHA-256715D31D887241E0AA530FC71CC97446C363FC37D6D05A919C0F5DC8935CCFF40
SSDEEP48:jXd+hMjFuZtz7t3+LFjgl5PujSZSPALZNbUhl/vj0d/GJ:Tyr573z5pOh64
TLSHT1FB3190174105462FAA75125FB8C982151A3E8D9D44F6A053DEF6A3C053A0AFAF3B64C5
hashlookup:parent-total35
hashlookup:trust100

Network graph view

Parents (Total: 35)

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

Key Value
MD5BD50790D76F6AD64056CBD0C19A90977
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
PackageRelease25.3
PackageVersion3.008
SHA-108EFBA9A62466317E220CF7D4F7E36AC60710B47
SHA-2565A8208AA9F55B7B64989184FA73302948407D37D54AAD50FAB007948FC92BFD5
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
FileSize50396
MD52859BE8AC3E7D83F79E35750FDE2CFE8
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.007-1
SHA-10E44CFC133F868C924C6954BDB94624245AF6235
SHA-256158D3B37D4AA4343E821C34CF196622129B94668FFE7B084771B3F89921C0B94
Key Value
MD54E02B21477889C0C6275846B26268B2A
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
PackageReleasebp151.2.1
PackageVersion3.006
SHA-1203D0701729ACD0680504DF9F0F8B04E7A11DA64
SHA-256602D533F4973E8D624F92B93EBC5D07FE7CFE5676BC61E74EF1601227B11D4D4
Key Value
MD52E6203E57CF759EBF6C5616C3179563E
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
PackageReleaselp151.25.2
PackageVersion3.008
SHA-1235BBE70348B6346A200AC37EDC7F37373DF81E7
SHA-256908FE4813FF36231F3E1908F3D5EBFD22869F2C3EB9B6E01F4F2A95C695C17DB
Key Value
FileSize49432
MD533839BE0582782AD07C8DA398D16FA3A
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.005-1
SHA-129B4D0284B0B54AC9A3AF861E17A49473D9EBFA0
SHA-256340083958B4CE7878665C501C32A00BAF8EB0DCFB9AF22F93B008221EED83AA8
Key Value
MD5F6103AB65BEAE8DCCE9194124D14BA46
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
PackageRelease1.2
PackageVersion3.008
SHA-1304AFF11C46A61E56759FFB004558B35C7F33B72
SHA-25637A22E060A5F819248FD24575DA35D6CB85B02733EC34D6FAA8F5FA029363011
Key Value
MD528217CA263B53F28D39EA1DF0198673B
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
PackageRelease25.4
PackageVersion3.008
SHA-1305D2C2722F87D4467F38D05FDC622E6551761EB
SHA-256A91824C7096F7440A1197AB6D331DFC0A549D5FC72AD9D713865375469CD8D68
Key Value
FileSize46028
MD54E94CB84FC8652AADB8D167F10678026
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.004-1
SHA-135167C2DD456109D2B5A4716932700D7A7020FCD
SHA-256C69F94B75F5C8B8CD8372CC3540BA04824EE6F7EDB1342A0069EACD6648A164E
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