Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6095879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:51:43+00:00 2026-05-23T12:51:43+00:00

i selected values from sqlite3 database and print the count of cursor.then it gives

  • 0

i selected values from sqlite3 database and print the count of cursor.then it gives an error ” ‘int’ object is not callable”

strq="select * from tblsample1"
self.con = sqlite3.connect('mydb.sqlite')
self.cur = self.con.cursor()
self.cur.execute(strq)              
print(self.cur.rowcount())

gives an error

TypeError: ‘int’ object is not callable

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:51:44+00:00Added an answer on May 23, 2026 at 12:51 pm

    Read documentation carefully! rowcount is an attribute so correct your code to:

     print(self.cur.rowcount)
    

    Cursor.rowcount Although the Cursor
    class of the sqlite3 module implements
    this attribute, the database engine’s
    own support for the determination of
    “rows affected”/”rows selected” is
    quirky.


    This includes SELECT statements
    because we cannot determine the number
    of rows a query produced until all
    rows were fetched.


    So you can modify your code to use fetchall:

    self.cur.execute(strq) 
    data = self.cur.fetchall()
    print len(data)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was struggling to get int values from a column in a database into
I need to get in an action method the values from the selected checkboxes
How can I get the selected text (not the selected value) from a drop-down
I would like to print the selected values of all selects using jQuery. I
I have some jQuery code that copies the selected values from one listbox to
Does anyone know how to get the selected values from a select box that
Can you help me to write selected values from a form to a file
How can i open child window in jQuery and get selected values from generated
I want to be able to send all the selected values from a listbox
How do I get the selected value from a dropdown list using JavaScript? <form>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.