Advertisement
Guest User

Untitled

a guest
Mar 12th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import mysql.connector
  2.  
  3. db=mysql.connector.connect(user='root',password='123456',host='localhost',database='notown')
  4. cursor=db.cursor()
  5. stmt='select * from albums'
  6. cursor.execute(stmt)
  7. rows=cursor.fetchall()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement