What kind of database do you need? Relational Databases?<br><br>The three major databases you can work with python are SQLite, MySQL and PostgreSQL (favorite of mine.)<br><br>SQLite already comes with python. Try:<br><br>>>> import sqlite3<br>
<br>SQLite is... Lite. All the informations are stored in a single file.<br><br>MySQL and PostgreSQL are more complete databases that run as servers on the machine, and you can use python bindings for both. (psycopg2 for postgres, and i forgot what binds mysql to python at the moment.)<br>
<br>I guess you should google for psycopg2, read a little bit about the SQL syntax (though you may not need to use them directly, it`s good to understand what happens behind the bindings.) The PostgreSQL docs are quite good.<br>
<br>Sorry for not providing any links. They should be easy to find if you google for them.<br><br><div class="gmail_quote">2009/1/19 amin <span dir="ltr"><<a href="mailto:funfullson@gmail.com">funfullson@gmail.com</a>></span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi dears.<br>
I started programing with python and want to use a suitable<br>
database.But I Know nothing about them.please introduse one to me.<br>
thanks.<br>
<font color="#888888">--<br>
<a href="http://mail.python.org/mailman/listinfo/python-list" target="_blank">http://mail.python.org/mailman/listinfo/python-list</a><br>
</font></blockquote></div><br><br clear="all"><br>-- <br>"I May Be the Walrus."<br>