Python Forum
Mysql returning number of rows not data
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Mysql returning number of rows not data
#1
Really odd thing today, when I query a mysql database I am getting the number of rows returned rather that the column data !

#!/usr/bin/python
# -*- coding:utf-8 -*-
import csv
import time
import MySQLdb 
try:
    db = MySQLdb.connect(host="localhost", user="root", passwd="",db="pension")
    cur = db.cursor()
except MySQLdb.Error, e:
    print "Error One %d: %s" % (e.args[0], e.args[1])
    
startdate = "2019-05-18"
enddate = "2019-05-19"
    
print cur.execute("SELECT * FROM pension.pension_payments WHERE date >= %s AND date <= %s",(startdate,enddate))
print cur.execute("SELECT * FROM pension.pension_payments")

Result would be:
4
4
but i have six columns in 4 rows

idpension_payments,date,week,name,employer,employee
69,"2019-05-18 16:47:35",10,Andrew,35.67,20.00
70,"2019-05-18 16:47:36",10,Alex,35.67,11.37
71,"2019-05-18 16:47:36",10,Sharon,35.67,7.05
72,"2019-05-18 16:47:36",10,Kerry,35.67,9.13
Reply


Messages In This Thread
Mysql returning number of rows not data - by AkaAndrew123 - Jun-10-2019, 09:33 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with writing monitored data to mysql upon change of one particular variable donottrackmymetadata 3 320 Apr-18-2024, 09:55 PM
Last Post: deanhystad
  Create X Number of Variables and Assign Data RockBlok 8 987 Nov-14-2023, 08:46 AM
Last Post: perfringo
  Returning Column and Row Data From Spreadsheet knight2000 0 460 Oct-22-2023, 07:07 AM
Last Post: knight2000
  Mysql and mysql.connector error lostintime 2 710 Oct-03-2023, 10:25 PM
Last Post: lostintime
  how do you style data frame that has empty rows. gsaray101 0 539 Sep-08-2023, 05:20 PM
Last Post: gsaray101
  Sequential number for rows retrieved and storing the Primary UKey to the line number GYKR 2 590 Aug-22-2023, 10:14 AM
Last Post: GYKR
  (Python) Pulling data from UA Google Analytics with more than 100k rows into csv. Stockers 0 1,252 Dec-19-2022, 11:11 PM
Last Post: Stockers
  How to properly format rows and columns in excel data from parsed .txt blocks jh67 7 1,922 Dec-12-2022, 08:22 PM
Last Post: jh67
  Basic SQL query using Py: Inserting or querying sqlite3 database not returning data marlonbown 3 1,401 Nov-08-2022, 07:16 PM
Last Post: marlonbown
  Mysql error message: Lost connection to MySQL server during query tomtom 6 16,178 Feb-09-2022, 09:55 AM
Last Post: ibreeden

Forum Jump:

User Panel Messages

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