From 18050d2423f07747d1ad65853085a250b50ff89f Mon Sep 17 00:00:00 2001 From: Shashank Vivek Date: Mon, 26 Feb 2018 17:55:25 +0530 Subject: [PATCH 1/6] Update README.md --- README.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4e8b747..2baca07 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,23 @@ # mysql-python-util -MySQL Python utils. Note : It's under development. -This is a MySQL utilities project created in Python. -Initially you can do below things. +This is a MySQL command line utility project written in Python. -1. Run an insert / update query with an option to manually commit the result. +You can do below things. +Execute an insert / update query with an option to manually commit the result. Basically before commmiting any result to database it asks whether you want to proceed or not by showing number of effected rows. +Usage : +-------- + +python insert_update.py --query "your_query" + + +Development : +-------------- +This runs on python 2.7 versions. + +Install Dependencies : +-------------------- + +pip install -r requirements.txt From 48a2ef2e0093abbd89204b3e1d64185a7ed86f22 Mon Sep 17 00:00:00 2001 From: Shashank Vivek Date: Mon, 26 Feb 2018 17:58:50 +0530 Subject: [PATCH 2/6] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2baca07..13c06d0 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,9 @@ Execute an insert / update query with an option to manually commit the result. B Usage : -------- - +``` python insert_update.py --query "your_query" +``` Development : @@ -19,5 +20,6 @@ This runs on python 2.7 versions. Install Dependencies : -------------------- - +``` pip install -r requirements.txt +``` From 1bc7e716a806c1e5943413555bcb3d9de5bb2153 Mon Sep 17 00:00:00 2001 From: Shashank Vivek Date: Wed, 2 May 2018 18:12:52 +0530 Subject: [PATCH 3/6] checking upsource checking upsource --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index c7a2347..2ef9c59 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ MySQL-python +checking upsource. From 36f1c2c18dd120ebae3eba26e243c437e7156583 Mon Sep 17 00:00:00 2001 From: Shashank Vivek Date: Mon, 11 Jul 2022 00:08:32 +0530 Subject: [PATCH 4/6] Removing Upsource commit text Removing Upsource commit text --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2ef9c59..c7a2347 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1 @@ MySQL-python -checking upsource. From a9ebf2d1d7ba5416eef85e0d05e8db65cc2a5d2b Mon Sep 17 00:00:00 2001 From: Shashank Vivek Date: Mon, 11 Jul 2022 00:58:27 +0530 Subject: [PATCH 5/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 13c06d0..ea6dd22 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Note : It's under development. +Blog Link : https://shashankvivek.in/2022/07/11/using-python-to-execute-mysql-insert-and-update-queries/ + This is a MySQL command line utility project written in Python. You can do below things. From c5d558b859d2a9b2018970d4d230616c5d6a8521 Mon Sep 17 00:00:00 2001 From: Shashank Vivek Date: Mon, 11 Jul 2022 00:58:40 +0530 Subject: [PATCH 6/6] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index ea6dd22..fa716d7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # mysql-python-util -Note : It's under development. - Blog Link : https://shashankvivek.in/2022/07/11/using-python-to-execute-mysql-insert-and-update-queries/ This is a MySQL command line utility project written in Python.