Guest User

Untitled

a guest
Jan 18th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. connection=pymysql.connect(host='localhost',user='root',password='123456',database='sakila')
  2.  
  3. cursor=connection.cursor()
  4.  
  5. insert_query= INSERT INTO 'film_text'(film_id, title, description) VALUES ('1001','ZZZ ZORRO','Zorro must Fight a Womanizer in Berlin');
  6.  
  7. cursor.execute(insert_query)
  8.  
  9. connection.commit()
Add Comment
Please, Sign In to add comment