diff --git a/src/rdbms-connect/HISTORY.rst b/src/rdbms-connect/HISTORY.rst index 61b5ed044e7..8ea301634dd 100644 --- a/src/rdbms-connect/HISTORY.rst +++ b/src/rdbms-connect/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.0.8 +++++++ ++ Add instructions to install the extension. + 1.0.7 ++++++ + Remove msrestazure dependency diff --git a/src/rdbms-connect/README.rst b/src/rdbms-connect/README.rst index cec855ec12f..39bd16b30ad 100644 --- a/src/rdbms-connect/README.rst +++ b/src/rdbms-connect/README.rst @@ -1,7 +1,7 @@ Microsoft Azure CLI 'rdbms-connect' Extension ========================================== -This extension enables the command to connect to Azure Database for MySQL and Azure Database for PostgreSQL flexible server instances. . +This extension enables the command to connect to Azure Database for MySQL and Azure Database for PostgreSQL flexible server instances. ----- Usage diff --git a/src/rdbms-connect/azext_rdbms_connect/_help.py b/src/rdbms-connect/azext_rdbms_connect/_help.py index 47281e3a187..b63c56cdb77 100644 --- a/src/rdbms-connect/azext_rdbms_connect/_help.py +++ b/src/rdbms-connect/azext_rdbms_connect/_help.py @@ -8,7 +8,7 @@ helps['mysql flexible-server connect'] = """ type: command -short-summary: Connect to a flexible server. +short-summary: Connect to a flexible server. To use this command, you must install the rdbms-connect extension. Run 'az extension add -n rdbms-connect' to install the extension if you haven't done so. example: - name: Connect to a flexible server using administrator username and password. Default database is used if not specified. text: az mysql flexible-server connect -n testServer -u username -p password -d flexibleserverdb @@ -18,7 +18,7 @@ helps['postgres flexible-server connect'] = """ type: command -short-summary: Connect to a flexible server. +short-summary: Connect to a flexible server. To use this command, you must install the rdbms-connect extension. Run 'az extension add -n rdbms-connect' to install the extension if you haven't done so. example: - name: Connect to a flexible server using administrator username and password. Default database is used if not specified. text: az postgres flexible-server connect -n testServer -u username -p password -d postgres @@ -28,7 +28,7 @@ helps['mysql flexible-server execute'] = """ type: command -short-summary: Connect to a flexible server. +short-summary: Connect to a flexible server and execute a query or a sql file. To use this command, you must install the rdbms-connect extension. Run 'az extension add -n rdbms-connect' to install the extension if you haven't done so. example: - name: Connect to a flexible server and execute a query with results outputted in a table. text: az mysql flexible-server execute -n testServer -u username -p password --querytext "select host, user from mysql.user;" --output table @@ -38,10 +38,10 @@ helps['postgres flexible-server execute'] = """ type: command -short-summary: Connect to a flexible server. +short-summary: Connect to a flexible server and execute a query or a sql file. To use this command, you must install the rdbms-connect extension. Run 'az extension add -n rdbms-connect' to install the extension if you haven't done so. example: - name: Connect to a flexible server and execute a query with results outputted in a table. text: az postgres flexible-server execute -n testServer -u username -p password --querytext "select * from pg_user;" --output table - name: Connect to a flexible server and execute a sql file. - text: az mysql flexible-server execute -n testServer -u username -p password --file-path path_to_sql_file + text: az postgres flexible-server execute -n testServer -u username -p password --file-path path_to_sql_file """ diff --git a/src/rdbms-connect/setup.py b/src/rdbms-connect/setup.py index 8b074e63034..191f0f8fc72 100644 --- a/src/rdbms-connect/setup.py +++ b/src/rdbms-connect/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '1.0.7' +VERSION = '1.0.8' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers