Python Forum
MySQL SSL Connection, Need help
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
MySQL SSL Connection, Need help
#1
Hey Everyone

I have a project that requires uploading excel files to a Google Cloud SQL Database (MySQL).

I have the below code that I have borrowed but I cant seem to get it to connect via SSL. Could someone help me get it working please? Disclaimer, I have never coded in Python before.

import xlrd 
    import MySQLdb
    
    # Open the workbook and define the worksheet
    book = xlrd.open_workbook("excel.xlsx") 
    sheet = book.sheet_by_name("PivotEx")
    
    # Establish a MySQL connection
    ssl = {ssl_cert : "/home/user/certs/client-cert.pem", ssl_key : "/home/user/certs/client-key.pem", ssl_ca : "/home/user/certs/server-ca.pem"}
    database = MySQLdb.connect (host = "privateIP", user = "root", passwd = "rootpassword", db = "DBName", ssl = ssl )
    
    # Get the cursor, which is used to traverse the database, line by line
    cursor = database.cursor()
    
    # Create the INSERT INTO sql query
    query = """INSERT INTO test (StoreID, Date, StoreName, CreateDate, Category, Scripts, Gross, Gst, CoPayDiscount, Net, CustomerPayments, GovernmentPayments, PremiumFreeIncentive, IncentiveOnline, EPF, rdPartyPayments, COGS, Gpdollar, Gppercent) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)"""
    
    # Create a For loop to iterate through each row in the XLS file, starting at row 2 to skip the headers
    for r in range(1, sheet.nrows):
          StoreID = sheet.cell(r,0).value
          Date = sheet.cell(r,1).value
          StoreName = sheet.cell(r,2).value
          CreateDate = sheet.cell(r,3).value
          Category = sheet.cell(r,4).value
          Scripts = sheet.cell(r,5).value
          Gross = sheet.cell(r,6).value
          Gst = sheet.cell(r,7).value
          CoPayDiscount = sheet.cell(r,8).value
          Net = sheet.cell(r,9).value
          CustomerPayments = sheet.cell(r,10).value
          GovernmentPayments = sheet.cell(r,11).value
          PremiumFreeIncentive = sheet.cell(r,12).value
          IncentiveOnline = sheet.cell(r,13).value
          EPF = sheet.cell(r,14).value
          rdPartyPayments = sheet.cell(r,15).value
          COGS = sheet.cell(r,16).value
          Gpdollar = sheet.cell(r,17).value
          Gppercent = sheet.cell(r,18).value
    
          # Assign values from each row
          values = (StoreID, Date, StoreName, CreateDate, Category, Scripts, Gross, Gst, CoPayDiscount, Net, CustomerPayments, GovernmentPayments, PremiumFreeIncentive, IncentiveOnline, EPF, rdPartyPayments, COGS, Gpdollar, Gppercent)
    
          # Execute sql Query
          cursor.execute(query, values)
    
    # Close the cursor
    cursor.close()
    
    # Commit the transaction
    database.commit()
    
    # Close the database connection
    database.close()
    
    # Print results
    print "" 
    print "All Done! Bye, for now." 
    print "" 
    columns = str(sheet.ncols) 
    rows = str(sheet.nrows)
    #print "I just imported " %2B columns %2B " columns and " %2B rows %2B " rows to MySQL!"
Reply


Messages In This Thread
MySQL SSL Connection, Need help - by LordVaderXIII - Oct-15-2017, 10:51 PM
RE: MySQL SSL Connection, Need help - by buran - Oct-16-2017, 07:07 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Virtual Env changing mysql connection string in python Fredesetes 0 410 Dec-20-2023, 04:06 PM
Last Post: Fredesetes
  Mysql and mysql.connector error lostintime 2 738 Oct-03-2023, 10:25 PM
Last Post: lostintime
  Mysql error message: Lost connection to MySQL server during query tomtom 6 16,326 Feb-09-2022, 09:55 AM
Last Post: ibreeden
  Python MYSQL connection does not work after 1h idle zazas321 9 6,995 Oct-07-2021, 12:02 PM
Last Post: ndc85430
  Serial connection connection issue Joni_Engr 15 8,277 Aug-30-2021, 04:46 PM
Last Post: deanhystad
  mysql connection pool? MuntyScruntfundle 0 2,060 Oct-20-2018, 07:36 PM
Last Post: MuntyScruntfundle
  mysql db connection using python sunstar20 13 12,166 Aug-04-2018, 09:08 AM
Last Post: vishalhule
  ssh + mysql connection python 3.4.3 desudesu 9 13,185 May-25-2017, 03:19 PM
Last Post: desudesu

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020