Pymysql - What is . cursor() for

Asked

Viewed 38 times

-1

I am learning database through Pymysql in Python, but many videos only talk about how to do but do not speak because... I wanted to ask what . cursor() in Pymysql is for?

  • After created the database does the access using the name the password and tbm the user The cursor in a database is used to access the database.with the cursor opened makes update and delete Insert

1 answer

-3

After the creation of the database what happens is that the .cursor returns a "new cursor" in your Data Base, it serves to write, add, create tables, edit tables and among other things, it simply gives you everything that Mysql can offer in the terminal(cli) with clear return for Python to interpret...

Browser other questions tagged

You are not signed in. Login or sign up in order to post.