Ticket #7397: django-admin.txt.patch

File django-admin.txt.patch, 1.7 KB (added by Johann Heller <Johams@…>, 16 years ago)

Patch

  • django-admin.txt

     
    9393
    9494.. _cache documentation: ../cache/
    9595
    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 
    11296createsuperuser
    11397---------------
    11498
     
    134118
    135119.. _authentication system: ../authentication/
    136120
     121dbshell
     122-------
     123
     124Runs 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
     132This command assumes the programs are on your ``PATH`` so that a simple call to
     133the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in
     134the right place. There's no way to specify the location of the program
     135manually.
     136
    137137diffsettings
    138138------------
    139139
Back to Top