Jump to content

agw

Members
  • Posts

    2
  • Joined

  • Last visited

agw's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I need the UUID python library for my flask app, on the Johnny server. It is not in the list of installed libraries, is there any way to get it installed?
  2. I am trying to make calls from python to a MySQL database using variables but the placeholder %s is not working. Here is my code: mycursor = connection.cursor() sql = "SELECT * FROM Users WHERE username = %s" val = ("Agwebberley") mycursor.execute(sql, val) myresult = mycursor.fetchall() print(myresult)
×
×
  • Create New...