ycliper

Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
Скачать

Lesson - 57 : Python Advanced - Python Database Access : MySQL Delete Data

python tutorial kudvenkat

python avinash jain

python by durga

python by gc reddy

python coursera

python codecademy

python google video

python guru99

python harvard

python john hammond

python jessica

python khan academy

python lynda

python naresh technologies

python tutorial free

python tutorial by sadalearninghub

python Numbers

Python dictonary

Python Database Access : MySQL Delete Data

Python List

Python Tuple

Python String

Автор: Sada Learning Hub

Загружено: 2018-01-15

Просмотров: 68

Описание: **************************************************
Python Core PlayList :    • Lesson - 01 : Python3 - What is python  
Python Advanced PlayList :    • Lesson - 46 : Python Advanced - Python OOP...  
**************************************************

Python Database Access : MySQL Update Data:

To update data in a MySQL table in Python, you follow the steps below:
Connect to the database by creating a new MySQLConnection object.
Create a new MySQLCursor object from the MySQLConnection object and call the execute()method of the MySQLCursor object. To accept the changes, you call the commit() method of the MySQLConnection object after calling the execute() method. Otherwise, no changes will be made to the database.
Close the cursor and database connection.

Example :
db_config = read_db_config()
prepare query and data
query = """ UPDATE books SET title = %s WHERE id = %s """
data = (title, book_id)
conn = MySQLConnection(**db_config)
update book title
cursor = conn.cursor()
cursor.execute(query, data)
accept the changes
conn.commit()

Sample Projects : https://github.com/SadaLearningHub1/P...

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
Lesson - 57 : Python Advanced - Python  Database Access : MySQL Delete Data

Поделиться в:

Доступные форматы для скачивания:

Скачать видео

  • Информация по загрузке:

Скачать аудио

Похожие видео

7 December 2021

7 December 2021

© 2025 ycliper. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]