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

  • Home
  • SEARCH
  • 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 7626493
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:19:58+00:00 2026-05-31T05:19:58+00:00

import MySQLdb x=raw_input(‘user> ‘) y=raw_input(‘passwd> ‘) db=MySQLdb.Connect(host=localhost, user=%s, passwd=%s % x,y) cursor=db.cursor() cursor.execute(‘GRANT ALL

  • 0
import MySQLdb
x=raw_input('user> ')
y=raw_input('passwd> ')
db=MySQLdb.Connect(host="localhost", user="%s", passwd="%s" % x,y)
cursor=db.cursor()
cursor.execute('GRANT ALL ON squidctrl.* TO sams@localhost IDENTIFIED BY "connect";')
cursor.execute('GRANT ALL ON squidlog.* TO sams@localhost IDENTIFIED BY "connect";')
cursor.close()

question how can i use it right, i don’t want to enter username and password in script in beginning, i want to it by myself as i wish. when i try it run i put username and pass, after that mistake

Traceback (most recent call last):
  File "test.py", line 8, in <module>
    db=MySQLdb.Connect('host="localhost", user="%s", passwd="%s"' % x,y)
TypeError: not enough arguments for format string
  • 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-31T05:19:58+00:00Added an answer on May 31, 2026 at 5:19 am

    You don’t need to use string interpolation ("%s" % ...) here.

    import MySQLdb
    user = raw_input('user> ')
    password = raw_input('passwd> ')
    db=MySQLdb.connect(host="localhost", user=user, passwd=password)
    cursor=db.cursor()
    cursor.execute('GRANT ALL ON squidctrl.* TO sams@localhost IDENTIFIED BY "connect";')
    cursor.execute('GRANT ALL ON squidlog.* TO sams@localhost IDENTIFIED BY "connect";')
    cursor.close()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

it inserts same value every time. import re import MySQLdb db = MySQLdb.connect(localhost,root,123,tc )
I can import MySQLdb from the interactive python command line but Zope gives me
After I installed MySQLdb by sudo apt-get install python-mysqldb I can import and use
So I have a file that looks like so: #!/usr/bin/python import MySQLdb import subprocess
I need to connect MySQLdb - module. I download MySQLdb - module and install
I am using python 2.7 and MySQLdb, while doing import MySQLdb its throwing below
from Tkinter import * import MySQLdb def tran() : first= Tk() label1 = Label(first
while i am trying to connect with python MySQLdb, i get an 'Invalid Arguments'
Possible Duplicate: Python import MySQLdb error - Mac 10.6 I've tried everything I can
Hi I have the following error when trying to import MySQLdb. Does anyone know

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.