Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #28331
| Path | csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <jiangwen365@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.001 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'python,': 0.02; 'importing': 0.04; 'parameter': 0.07; 'pypy': 0.07; 'subject:released': 0.07; 'python': 0.09; 'pyodbc': 0.09; 'sep': 0.09; 'aug': 0.13; '0.6': 0.16; '<--': 0.16; 'ironpython': 0.16; 'method;': 0.16; 'string': 0.17; 'module': 0.19; 'import': 0.21; 'ctypes': 0.22; 'subject:support': 0.22; 'received:74.125.82.174': 0.23; 'script': 0.24; 'handling': 0.27; 'message- id:@mail.gmail.com': 0.27; 'fixed': 0.28; 'initial': 0.28; '0.5': 0.29; 'changes:': 0.29; 'keyword': 0.30; 'compatible': 0.30; 'received:74.125.82': 0.33; 'problem': 0.33; 'to:addr:python- list': 0.33; 'version': 0.34; 'received:google.com': 0.34; 'doing': 0.35; 'received:74.125': 0.36; 'totally': 0.36; 'subject:with': 0.36; 'performance': 0.39; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'your': 0.60; 'jul': 0.65; 'from:charset:gb2312': 0.78; '0.8': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=+xG/9lRfO6ErQMc+vkUwUtb3AntXYQiFYjjVMcJZRuY=; b=SXZR4UQSTOAEiVugGU+cv2raSe8s14kJ4SYNoEl7H9M7fxXVeJuEqTmv7fvL8iJxwL +WJS6GI8tQYuJAV7v92j54fxi9vWXa1sff/RBuk1wIKyj5O2R0Cu2d7SlnjbKdZEu+9X I9ycS6I/lOgWzz/4zvj/jx5cFdXHBq3qaH1nohWNBz2kasbMkmeMsPOft8hh8dNqai6m 9cO74ilSm2qqHIe7Fso/iSiwBDL/EIZ3WqYYhD0u9BYzYHmjBN6IYgp2ykoAZJONg7vA 80tOcUmrhJVDDTgJB/R5aA4GfL+LKAa/Mdfoc4rpScDAj/sRHqq7OSEtyJOWOdRw3pm8 Y+TQ== |
| MIME-Version | 1.0 |
| Date | Mon, 3 Sep 2012 09:01:33 +0800 |
| Subject | PyPyODBC 0.8.3 released with improved performance and SQLAlchemy support |
| From | 江文 <jiangwen365@gmail.com> |
| To | python-list@python.org |
| Content-Type | text/plain; charset=ISO-8859-1 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.123.1346634094.27098.python-list@python.org> (permalink) |
| Lines | 33 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1346634094 news.xs4all.nl 6951 [2001:888:2000:d::a6]:56625 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:28331 |
Show key headers only | View raw
PyPyODBC - A Pure Python ctypes ODBC module
Features
- Pure Python, compatible with IronPython and PyPy (tested on Win32)
- Almost totally same usage as pyodbc
You can simply try pypyodbc in your existing pyodbc powered script
with the following changes:
#import pyodbc <-- The original pyodbc importing line
import pypyodbc as pyodbc # Let pypyodbc "pretend" the pyodbc
pyodbc.connect(...) # pypyodbc is now doing pyodbc's
job with same APIs!
History
Version 0.8.3 Sep 1 2012 sql_longvarchar handling fix; performance optimization;
Version 0.8.2 Aug 27 2012 Differentiate sql_varchar and
sql_longvarchar; Initial support for SQLAlchemy;
Version 0.8.1 Aug 26 2012 Fixed the long type parameter issue; Added
support for IronPython;
Version 0.8 Aug 25 2012 Added getinfo method;
Version 0.7 Jul 28 2012 Fixed nchar/ntext/nvarchar string truncat problem ;
Version 0.6 Jul 4 2012 Added Cursor.commit() and Cursor.rollback();
Added readonly keyword to connect;
Version 0.5 Jun 23 2012 Initial release;
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
PyPyODBC 0.8.3 released with improved performance and SQLAlchemy support 江文 <jiangwen365@gmail.com> - 2012-09-03 09:01 +0800
csiph-web