Modify or Update live database in Python and Django

Hello guys, in this post I’m gonna tell you about how to update the live database in Python and Django, you’ll see in this blog how to connect with the live database and update or modify that. we update and convert all the emails into lowercase. We’ll …


This content originally appeared on DEV Community and was authored by Shivam Rohilla

Hello guys, in this post I'm gonna tell you about how to update the live database in Python and Django, you'll see in this blog how to connect with the live database and update or modify that. we update and convert all the emails into lowercase. We'll use LOWER(column) function for converting all the emails into the lowercase.

pip install psycopg2

Psycopg2 is used to implement a connection pool.

Make a connection and enter your database name and credentials or host and password.

conn = psycopg2.connect(
    database = "dindin",
    user="postgres",
    host="localhost",
    port="5432",
    password="Shivam123",

)

cur = conn.cursor()

then execute a update command

cur.execute("UPDATE auth_user SET email = LOWER(email) WHERE email != LOWER(email);")

after then commit this

conn.commit()

then use the select command and select all the users from your table name

cur.execute("SELECT * from auth_user")
rows = cur.fetchall()

and then print all the user details you want to print or want to know that your emails are converted successfully or not. Use these print commands, and please write their indexes carefully otherwise it shows errors.

for row in rows:
    print("ID :", row[0] )
    print("username :", row[4] )
    print("email :", row[7] )
    print("/n")

and print this command for checking your program compiled successfully or not.

print("Complete")

then close the connection.

conn.close()    

and name this file as update.py and run this program in your terminal

python update.py

after running this command you will see the complete message in your terminal.

Thank You
Shivam Rohilla | Python Developer


This content originally appeared on DEV Community and was authored by Shivam Rohilla


Print Share Comment Cite Upload Translate Updates
APA

Shivam Rohilla | Sciencx (2021-07-01T04:17:53+00:00) Modify or Update live database in Python and Django. Retrieved from https://www.scien.cx/2021/07/01/modify-or-update-live-database-in-python-and-django/

MLA
" » Modify or Update live database in Python and Django." Shivam Rohilla | Sciencx - Thursday July 1, 2021, https://www.scien.cx/2021/07/01/modify-or-update-live-database-in-python-and-django/
HARVARD
Shivam Rohilla | Sciencx Thursday July 1, 2021 » Modify or Update live database in Python and Django., viewed ,<https://www.scien.cx/2021/07/01/modify-or-update-live-database-in-python-and-django/>
VANCOUVER
Shivam Rohilla | Sciencx - » Modify or Update live database in Python and Django. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/07/01/modify-or-update-live-database-in-python-and-django/
CHICAGO
" » Modify or Update live database in Python and Django." Shivam Rohilla | Sciencx - Accessed . https://www.scien.cx/2021/07/01/modify-or-update-live-database-in-python-and-django/
IEEE
" » Modify or Update live database in Python and Django." Shivam Rohilla | Sciencx [Online]. Available: https://www.scien.cx/2021/07/01/modify-or-update-live-database-in-python-and-django/. [Accessed: ]
rf:citation
» Modify or Update live database in Python and Django | Shivam Rohilla | Sciencx | https://www.scien.cx/2021/07/01/modify-or-update-live-database-in-python-and-django/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.