96 | | dbshell |
97 | | ------- |
98 | | |
99 | | Runs the command-line client for the database engine specified in your |
100 | | ``DATABASE_ENGINE`` setting, with the connection parameters specified in your |
101 | | ``DATABASE_USER``, ``DATABASE_PASSWORD``, etc., settings. |
102 | | |
103 | | * For PostgreSQL, this runs the ``psql`` command-line client. |
104 | | * For MySQL, this runs the ``mysql`` command-line client. |
105 | | * For SQLite, this runs the ``sqlite3`` command-line client. |
106 | | |
107 | | This command assumes the programs are on your ``PATH`` so that a simple call to |
108 | | the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in |
109 | | the right place. There's no way to specify the location of the program |
110 | | manually. |
111 | | |
| 121 | dbshell |
| 122 | ------- |
| 123 | |
| 124 | Runs the command-line client for the database engine specified in your |
| 125 | ``DATABASE_ENGINE`` setting, with the connection parameters specified in your |
| 126 | ``DATABASE_USER``, ``DATABASE_PASSWORD``, etc., settings. |
| 127 | |
| 128 | * For PostgreSQL, this runs the ``psql`` command-line client. |
| 129 | * For MySQL, this runs the ``mysql`` command-line client. |
| 130 | * For SQLite, this runs the ``sqlite3`` command-line client. |
| 131 | |
| 132 | This command assumes the programs are on your ``PATH`` so that a simple call to |
| 133 | the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in |
| 134 | the right place. There's no way to specify the location of the program |
| 135 | manually. |
| 136 | |