Python & Databases ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Peter Moscatt

    Python & Databases ?

    Will Python work with any of the databases like MySQL... ?

    Pete
  • Josiah Carlson

    #2
    Re: Python & Databases ?

    Peter Moscatt wrote:
    [color=blue]
    > Will Python work with any of the databases like MySQL... ?
    >
    > Pete[/color]

    There are methods for accessing most every database system through
    Python. You may want to head to google.com before asking next time.

    Download MySQL for Python for free. MySQL database connector for Python programming. MySQLdb is a Python DB API-2.0-compliant interface; see PEP-249 for details.


    - Josiah

    Comment

    • Mike C. Fletcher

      #3
      Re: Python & Databases ?

      Did you try a search for this?



      seems to return some fairly relevant documents...

      Short answer: yes. :)

      Have fun,
      Mike

      Peter Moscatt wrote:
      [color=blue]
      >Will Python work with any of the databases like MySQL... ?
      >
      >Pete
      >
      >[/color]
      _______________ _______________ _________

      Mike C. Fletcher
      Designer, VR Plumber, Coder




      Comment

      • Yermat

        #4
        Re: Python & Databases ?

        Peter Moscatt a écrit :[color=blue]
        > Will Python work with any of the databases like MySQL... ?
        >
        > Pete[/color]




        Comment

        • David M. Cook

          #5
          Re: Python & Databases ?

          In article <4011bcd6$0$405 1$afc38c87@news .optusnet.com.a u>, Peter Moscatt
          wrote:
          [color=blue]
          > Will Python work with any of the databases like MySQL... ?[/color]

          Yes, very nicely indeed. You can use mysqldb or one of the
          object-relational mappers that support mysql, like sqlobject or middlekit.

          Dave Cook

          Comment

          Working...