Tags : Browse Projects

Select a tag to browse associated projects and drill deeper into the tag cloud.

pymysql

Compare

  Analyzed about 24 hours ago

This pure Python MySQL client provides a DB-API to a MySQL database by talking directly to the server via the binary client/server protocol. Example: import pymysql conn = pymysql.connect(host='127.0.0.1', unix_socket='/tmp/mysql.sock', user='root', passwd=None, db='mysql') # conn = ... [More] pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd=None, db='mysql') cur = conn.cursor() cur.execute("SELECT Host,User FROM user") # print cur.description # r = cur.fetchall() # print r # ...or... for r in cur: print r cur.close() conn.close() [Less]

6.63K lines of code

9 current contributors

3 days since last commit

1 users on Open Hub

Low Activity
5.0
 
I Use This

ThinkSQL

Compare

  Analyzed about 9 hours ago

ThinkSQL is a cross-platform RDBMS. Compliance with the SQL standard means it supports transactions, sub-selects, views, set operators, and referential constraints. It has a multi-versioning engine and native ODBC, JDBC and Python drivers.

116K lines of code

0 current contributors

almost 6 years since last commit

0 users on Open Hub

Inactive
0.0
 
I Use This
Licenses: No declared licenses