Result for 05AFD3744BF8B5B0D2ACD50A931745D2DC8928EF

Query result

Key Value
FileName./usr/share/doc/packages/perl-Mojo-SQLite/examples/blog/script/blog
FileSize229
MD50A8DAAE5B6858CFC1BEEA451CA214B30
SHA-105AFD3744BF8B5B0D2ACD50A931745D2DC8928EF
SHA-256C2138C0E9937CF069D6B0F564435900EF743C0B64559050C010E4AB227B5967D
SSDEEP6:HWaHZ8aQStFmejcSlKyy6K1igZEEJMl01TCe//1TCIln:HRYSpjcSlKqKSEXhFV
TLSHT138D02383821C13A3241031DA803ED730F0D1633C305F320F4870B800C0A05D1333E01C
hashlookup:parent-total62
hashlookup:trust100

Network graph view

Parents (Total: 62)

The searched file hash is included in 62 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
MD5018FE56BDEF5AF759F4F1697905950BE
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 https://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.
PackageNameperl-Mojo-Pg
PackageReleaselp152.2.1
PackageVersion4.26
SHA-10A574DF798689A19E535C476CA5D50B9DB2AF99D
SHA-256A9D53C91A4057E0C1278A7A4812016AC4E6A39E2A356E48C106CF6F5F8E8000D
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
MD5F7504CD54FFFD45B0C564FA83E3B84AE
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 https://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.
PackageNameperl-Mojo-Pg
PackageReleasebp150.2.1
PackageVersion4.26
SHA-10D5C8615DAD57D69BB1A5F447BA3555977021881
SHA-2568A67A38C51466853C6CEDCF9E64CECF298EF27C104DDD4EC81DA61724947FC77
Key Value
MD532834F2E86A9D1D67FAF094C36367594
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 https://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.
PackageNameperl-Mojo-Pg
PackageReleasebp152.2.1
PackageVersion4.26
SHA-10E8150D4697E2B10E002E928DCFAEE83B9147676
SHA-256EB321F29DFB1B810D1C71E8DBEE4FA9CDCDD9FB5947A44C352A647C11335C40B
Key Value
MD53E42F631EE64C4E50BD5536C14FD3E33
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 https://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.
PackageNameperl-Mojo-Pg
PackageRelease1.1
PackageVersion4.25
SHA-1149D5065AFA24BB3F3248788FD4191D601B4267E
SHA-256ABA220C90E650C5C256CD1D633590E77E9E89A08FFCB30CEC26C7178604341C6
Key Value
MD5FBC674CB4A285C3B3B35DBFC0C95571B
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 https://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.
PackageNameperl-Mojo-Pg
PackageReleaselp151.61.2
PackageVersion4.26
SHA-119FC3062B837BCE14C5309FEEADEBDFB84D99244
SHA-256364D282CBB8B921E69A8AAFF25B3F887EC901BBE159A0C7D336B09A94EE24518
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
MD5B612AE3D50352FF6BDC55449BDB98C87
PackageArchnoarch
PackageDescriptionthe Mojo::Pg manpage is a tiny wrapper around the DBD::Pg manpage that makes http://www.postgresql.org a lot of fun to use with the http://mojolicious.org real-time web framework. Perform queries blocking and non-blocking, use all 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.
PackageMaintainertv <tv>
PackageNameperl-Mojo-Pg
PackageRelease1.mga7
PackageVersion4.130.0
SHA-1299636D3F7FCE72589424229F3458F81AE53EDB7
SHA-25653ADA4D94B9B77F465E8FE84D2DA36DBDD527F9CFDA85680684F3EA667110F2F