Catmandu::DBI - Catmandu tools to communicate with DBI based interfaces
Contents
Copyright
Copyright 2024 - Nicolas Franck, Patrick Hochstenbach, Vitali Peil, Nicolas Steenlant
License
This library is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
Modules
Catmandu::Importer::DBI
Catmandu::Store::DBI
Name
Catmandu::DBI - Catmandu tools to communicate with DBI based interfaces
See Also
Catmandu, Catmandu::Importer , Catmandu::Store::DBI
perl v5.38.2 2024-03-24 Catmandu::DBI(3pm)
Synopsis
# From the command line
# Export data from a relational database
$ catmandu convert DBI --dsn dbi:mysql:foobar --user foo --password bar --query "select * from table"
# Import data into a relational database
$ catmandu import JSON to DBI --data_source dbi:SQLite:mydb.sqlite < data.json
# Export data from a relational database
$ catmandu export DBI --data_source dbi:SQLite:mydb.sqlite to JSON
# Or via a configuration file
$ cat catmandu.yml
---
store:
mydb:
package: DBI
options:
data_source: "dbi:mysql:database=mydb"
username: xyz
password: xyz
...
$ catmandu import JSON to mydb < data.json
$ catmandu export mydb to YAML > data.yml
# Export one record
$ catmandu export mydb --id 012E929E-FF44-11E6-B956-AE2804ED5190 to JSON > record.json
# Count the number of records
$ catmandu count mydb
# Delete data
$ catmandy delete mydb
