Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #31336
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Subject | Re: MySQL with Python |
| Date | 2012-10-15 15:20 -0400 |
| Organization | > Bestiaria Support Staff < |
| References | <1350308732.2373.8.camel@roddur> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2233.1350328857.27098.python-list@python.org> (permalink) |
On Mon, 15 Oct 2012 14:45:32 +0100, ????? ??????????
<bnrj.rudra@gmail.com> declaimed the following in
gmane.comp.python.general:
> Dear friends,
> I am starting a project of creating a database using mySQL(my first
> project with database).
> I went to my institute library and find that, all books are managing
> "mySQL with perl and php"
>
> I am new to python itself and gradually loving it. I mostly use it as an
> alternative of shell-script. Since learning a new language for every new
> project is not possible(its self assigned project, generally in free
> time), can I do a "mySQL with python?"
>
> if yes, can you kindly suggest a book/reference on this?
First off, how much "managing" do you expect to perform? For
actually managing the MySQL server you're probably better off
downloading the dedicated application (Used to be "MySQL Admin" and a
separate "MySQL QueryBrowser" -- the current download is a unified
"MySQL Workbench").
For routine database /access/ (that is, someone has created the
database user account that will be used), MySQLdb is the Python adapter
to connect to the server. For using THAT, you basically need to know SQL
(MySQL's flavor in particular), along with understanding the DB-API 2
specification (PEP-249) with the MySQLdb documentation (which explains
any limitations or specifics; see http://mysql-python.sourceforge.net/ )
For books, though some are rather old by now:
MySQL for Python
(Albert Lukaszewski; 2010 Packt Publishing)
The Definitive Guide to MySQL 5 3rd Ed
(Michael Kofler; 2005 Apress)[no Python chapter, but does introduce the
now-discontinued Admin and QueryBrowser applications, and introduces the
features of MySQL v5
Managing & Using MySQL 2nd Ed (Reese/Yarger/King; 2002 O'Reilly)[has 5
pages on MySQL with Python]
And a new edition NOT YET RELEASED -- don't know if this edition
includes anything on Python, the 3rd edition does not; but the volume is
huge and may be close to covering what the old MySQL AB "Administrators
Guide" and "Language Reference" books covered.
MySQL 5th Ed
(Paul DuBois; Dec 2012 Addison-Wesley [Developer's Library])
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
MySQL with Python রুদ্র ব্যাণার্জী <bnrj.rudra@gmail.com> - 2012-10-15 14:45 +0100
Re: MySQL with Python Chris Angelico <rosuav@gmail.com> - 2012-10-16 01:01 +1100
Re: MySQL with Python রুদ্র ব্যাণার্জী <bnrj.rudra@gmail.com> - 2012-10-15 15:47 +0100
Re: MySQL with Python Chris Angelico <rosuav@gmail.com> - 2012-10-16 01:54 +1100
Re: MySQL with Python Demian Brecht <demianbrecht@gmail.com> - 2012-10-15 07:05 -0700
Re: MySQL with Python Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2012-10-15 15:20 -0400
Re: MySQL with Python Roy Smith <roy@panix.com> - 2012-10-15 15:44 -0400
csiph-web