-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?
-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?
-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 mysql python database
You are not signed in. Login or sign up in order to post.
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
– stack.cardoso