├── .gitignore ├── README.md ├── composer.json └── src ├── Commands ├── AbstractCommand.php ├── Create.php ├── Delete.php ├── DeleteTable.php ├── ListAll.php ├── Query.php ├── Show.php └── ShowTable.php └── Language ├── en └── DB.php └── pt-BR └── DB.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/composer.json -------------------------------------------------------------------------------- /src/Commands/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/AbstractCommand.php -------------------------------------------------------------------------------- /src/Commands/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/Create.php -------------------------------------------------------------------------------- /src/Commands/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/Delete.php -------------------------------------------------------------------------------- /src/Commands/DeleteTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/DeleteTable.php -------------------------------------------------------------------------------- /src/Commands/ListAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/ListAll.php -------------------------------------------------------------------------------- /src/Commands/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/Query.php -------------------------------------------------------------------------------- /src/Commands/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/Show.php -------------------------------------------------------------------------------- /src/Commands/ShowTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Commands/ShowTable.php -------------------------------------------------------------------------------- /src/Language/en/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Language/en/DB.php -------------------------------------------------------------------------------- /src/Language/pt-BR/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codeigniter-db/HEAD/src/Language/pt-BR/DB.php --------------------------------------------------------------------------------