mysql.rst
changeset 1809 4e78b58a2935
child 1810 752c192306ff
equal deleted inserted replaced
1808:2c07ce26db83 1809:4e78b58a2935
       
     1 .. -*- coding: utf-8; -*-
       
     2 .. include:: HEADER.rst
       
     3 
       
     4 ================
       
     5  MySQL/MariaBD.
       
     6 ================
       
     7 .. contents::
       
     8 
       
     9 SQL clients.
       
    10 ============
       
    11 
       
    12 mysql.
       
    13 ------
       
    14 
       
    15 Official client. Install ``mariadb-client`` package - ``mysql`` utility
       
    16 will be installed with dependent package.
       
    17 
       
    18 Usage::
       
    19 
       
    20   $ mysql -u $USER -p
       
    21   Enter password:   <== Type password.
       
    22 
       
    23 mycli.
       
    24 ------
       
    25 
       
    26 Python command line client with completion. Usage::
       
    27 
       
    28   $ mycli -u $USER
       
    29   Password:         <== Type password.
       
    30