NAME
DiaColloDB::methods::export - import/export methods for DiaColloDB
SYNOPSIS
##========================================================================
## PRELIMINARIES
use
DiaColloDB;
$coldb
= DiaColloDB->new(
%args
);
##========================================================================
## Export/Import
$bool
=
$coldb
->dbexport();
$coldb
=
$coldb
->dbimport();
DESCRIPTION
The DiaColloDB::methods::export
module adds import and export methods for the top-level DiaColloDB package, which see for more details.
Prior to v2.12.012, the methods defined by this module were defined directly in the top-level DiaColloDB
package.
Export/Import
- dbexport
-
$bool
=
$coldb
->dbexport();
$bool
=
$coldb
->dbexport(
$outdir
,
%opts
);
$outdir defaults to "$coldb->{dbdir}/export" %opts:
export_sdat
=>
$bool
,
##-- whether to export *.sdat (stringified tuple files for debugging; default=0)
export_cof
=>
$bool
,
##-- do/don't export cof.* (default=do)
- dbimport
-
$coldb
=
$coldb
->dbimport();
$coldb
=
$coldb
->dbimport(
$txtdir
,
%opts
)
Import ColocDB data from $txtdir
TODO
AUTHOR
Bryan Jurish <moocow@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2015-2020 by Bryan Jurish
This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.2 or, at your option, any later version of Perl 5 you may have available.
SEE ALSO
DiaColloDB(3pm), ...