Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 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; 'subject:skip:c 10': 0.07; 'python': 0.09; 'pyodbc': 0.09; 'sep': 0.09; 'underlying': 0.09; 'bug': 0.10; '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; '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; 'subject:: ': 0.38; 'performance': 0.39; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'your': 0.60; 'improved': 0.62; '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=3U7pLxdFWVNuyYhyEvaHX7lO5FJIzN7RQET9DNfz1dI=; b=V3+Sp3bo308JSR1bQqTUTaxRyeyneKbtDx5NwIWaDhp3eYH1DMfVyzO/s9OPtRLkQu SXaHpclcg0pPOcYqbWbaKn8+svinnEBhd/VIExvZqmusFl+leEDknkt62Lzp4G+u4Jse Z2Qp/eSPPmt3AJ2hzEfp0daMQL0wXZyczL5C/O8oPiYPAkJTlehsHwR95RFRN2gPVtUH /YiTN0h54tJ3sSsQeB2laE+XXLUuz0oyRcx6QPrrmSKggzoVZ818f7dzUgV2Wq8nX8p3 kCLrRL8qrVBL6vjZSvzHJ+h1BuYJsDpqxHcJqDVLzd6F3Qru2v6gmz0yzbDRwcWF+c37 A4mA== MIME-Version: 1.0 Date: Tue, 11 Sep 2012 21:19:14 +0800 Subject: Re: PyPyODBC 0.8.4 released with improved compatibility to pyodbc From: =?GB2312?B?va3OxA==?= 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 37 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1347369555 news.xs4all.nl 6966 [2001:888:2000:d::a6]:57593 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:28885 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.4 Sep 9 2012 Improved compatibility with pyodbc; Many underlying bug fixes; 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;