DB manager
dbmanager is tool for operating db.
Developed in perl code: 100%.
A README file is required for CPAN modules since CPAN extracts the README file from a module distribution so that people browsing the archive can use it get an idea of the modules uses. It is usually a good idea to provide version information here so that people can decide whether fixes for the module are worth downloading.
Table of Contents
Installation
Follow instructions from README for each module.
Set INSTALL_BASE=/usr/local/perl/
Dependencies
dbmanager requires next modules and libraries
Check requires from README for each module.
Library structure
dbmanager
├── bin/
│ ├── DBManager.pm
│ ├── dbmanager_run.pl
│ ├── DBOperation.pm
│ ├── Department/
│ │ ├── AddDepartment.pm
│ │ ├── DelDepartment.pm
│ │ ├── GetDepartmentNames.pm
│ │ ├── GetDid.pm
│ │ ├── GetMaxDid.pm
│ │ └── ListDepartments.pm
│ ├── Employee/
│ │ ├── GetEid.pm
│ │ ├── GetFullnames.pm
│ │ ├── GetMaxEid.pm
│ │ ├── GetUsernames.pm
│ │ ├── ListAll.pm
│ │ └── ListEmployees.pm
│ ├── ProcessArgs.pm
│ └── User/
│ ├── AddUser.pm
│ ├── DelUser.pm
│ ├── GetGids.pm
│ ├── GetUids.pm
│ └── UserToGroup.pm
├── conf/
│ └── dbmanager.cfg
├── log/
│ └── dbmanager.log
└── sql/
└── dbmanager.sql
Docs
More documentation and info at
Copyright and licence
Copyright (C) 2016 - 2024 by vroncevic.github.io/dbmanager
dbmanager is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.18.2 or, at your option, any later version of Perl 5 you may have available.