mev / console-query-tool
Console tool wich provide unified interface different database drivers
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
Requires
- mongodb/mongodb: ^1.0
- myclabs/php-enum: ^1.5
- phplucidframe/console-table: ^1.1
- symfony/console: ^3.2
Requires (Dev)
- phpunit/phpunit: ^5.7
This package is not auto-updated.
Last update: 2025-04-02 21:18:32 UTC
README
Application is a simple MongoDB client which works in console end executes SQL statement as native mongo queries.
Requirements
- php 5.6 or greater
- php-mongodb extension
- unix compatible platform
Installation
composer requires mev/console-query-tool
Usage
php bin/app.php <command> <options> <query>
Available commands:
query:execute - Execute SQL query
Available options:
--host[=HOST] MongoDB server host [default: "localhost"]
--port[=PORT] MongoDB server port [default: 27017]
--db=DB MongoDB database
-h, --help Display a help message
Example
php bin/app.php query:execute --db=test "SELECT price, name FROM books WHERE price >=5"
Supported statements:
- SELECT (without subqueries)
- WHERE
- LIMIT
- ORDER BY
Supported compare operators:
- = - equal
- <> - not equal
- < - less than
-
- greater than
-
= - greater than or equal
- <= - less than or equal
Supported logical operators:
- AND
- OR