{ "info": { "author": "Vernon Cole", "author_email": "vernondcole@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: SQL", "Topic :: Database", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Project\n-------\nadodbapi\n\nA Python DB-API 2.0 (PEP-249) module that makes it easy to use Microsoft ADO \nfor connecting with databases and other data sources\nusing either CPython or IronPython.\n\nHome page: \nDocumentation: \n\nFeatures:\n* 100% DB-API 2.0 (PEP-249) compliant (including most extensions and recommendations).\n* Includes pyunit testcases that describe how to use the module. \n* Fully implemented in Python. -- runs in Python 2.5+ Python 3.0+ and IronPython 2.6+\n* Licensed under the LGPL license, which means that it can be used freely even in commercial programs subject to certain restrictions. \n* Includes SERVER and REMOTE modules so that a Windows proxy can serve ADO databases to a Linux client using PyRO.\n* The user can choose between paramstyles: 'qmark' 'named' 'format' 'pyformat' 'dynamic'\n* Supports data retrieval by column name e.g.:\n for row in myCurser.execute(\"select name,age from students\"):\n print(\"Student\", row.name, \"is\", row.age, \"years old.\")\n* Supports user-definable system-to-Python data conversion functions (selected by ADO data type, or by column)\n\nPrerequisites:\n* C Python 2.5 or higher\n and pywin32 (Mark Hammond's python for windows extensions.)\nor\n Iron Python 2.6 or higher. (works in IPy2.0 for all data types except BUFFER)\n\nInstallation:\n* (C-Python on Windows): Download pywin32 from http://sf.net/projects/pywin32 and install from .msi (adodbapi is included)\n* ((to use Windows as a server, also download and install Pyro4 (requires Python 2.6 or later))) https://pypi.python.org/pypi/Pyro4\n* (IronPython on Windows): Download adodbapi from http://sf.net/projects/adodbapi. Unpack the zip.\n Open a command window as an administrator. CD to the folder containing the unzipped files.\n Run \"setup.py install\" using the IronPython of your choice.\n* (Linux, as a client): download and install from PyPi: \"pip install adodbapi Pyro4\"\n\nNOTE: ...........\nIf you do not like the new default operation of returning Numeric columns as decimal.Decimal,\nyou can select other options by the user defined conversion feature. \nTry:\n adodbapi.apibase.variantConversions[adodbapi.ado_consts.adNumeric] = adodbapi.apibase.cvtString\nor:\n adodbapi.apibase.variantConversions[adodbapi.ado_consts.adNumeric] = adodbapi.apibase.cvtFloat\nor:\n adodbapi.apibase.variantConversions[adodbapi.ado_consts.adNumeric] = write_your_own_convertion_function\n\t\t............\nwhats new in version 2.6\n A cursor.prepare() method and support for prepared SQL statements.\n Lots of refactoring, especially of the Remote and Server modules (still to be treated as Beta code).\n The quick start document 'quick_reference.odt' will export as a nice-looking pdf.\n Added paramstyles 'pyformat' and 'dynamic'. If your 'paramstyle' is 'named' you _must_ pass a dictionary of\n parameters to your .execute() method. If your 'paramstyle' is 'format' 'pyformat' or 'dynamic', you _may_\n pass a dictionary of parameters -- provided your SQL operation string is formatted correctly.\n\nwhats new in version 2.5\n Remote module: (works on Linux!) allows a Windows computer to serve ADO databases via PyRO\n Server module: PyRO server for ADO. Run using a command like= C:>python -m adodbapi.server\n (server has simple connection string macros: is64bit, getuser, sql_provider, auto_security)\n Brief documentation included. See adodbapi/examples folder adodbapi.rtf\n New connection method conn.get_table_names() --> list of names of tables in database\n\n Vastly refactored. Data conversion things have been moved to the new adodbapi.apibase module.\n Many former module-level attributes are now class attributes. (Should be more thread-safe)\n Connection objects are now context managers for transactions and will commit or rollback.\n Cursor objects are context managers and will automatically close themselves.\n Autocommit can be switched on and off.\n Keyword and positional arguments on the connect() method work as documented in PEP 249.\n Keyword arguments from the connect call can be formatted into the connection string.\n New keyword arguments defined, such as: autocommit, paramstyle, remote_proxy, remote_port.\n *** Breaking change: variantConversion lookups are simplified: the following will raise KeyError:\n oldconverter=adodbapi.variantConversions[adodbapi.adoStringTypes]\n Refactor as: oldconverter=adodbapi.variantConversions[adodbapi.adoStringTypes[0]]\n\n(( More information like this in older_whatsnew.txt ))\n\t \nLicense\n-------\nLGPL, see http://www.opensource.org/licenses/lgpl-license.php\n\nDocumentation\n-------------\nStart with:\n\nhttp://www.python.org/topics/database/DatabaseAPI-2.0.html\nread the examples in adodbapi/examples\nand look at the test cases in adodbapi/test directory. \n\nMailing lists\n-------------\nThe adodbapi mailing lists have been deactivated. Submit comments to the \npywin32 or IronPython mailing lists.\n -- the bug tracker on sourceforge.net/projects/adodbapi will be checked, (infrequently).", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://sourceforge.net/projects/adodbapi", "keywords": "database ado odbc dbapi db-api Microsoft SQL", "license": "LGPL", "maintainer": null, "maintainer_email": null, "name": "adodbapi", "package_url": "https://pypi.org/project/adodbapi/", "platform": "Windows,Linux", "project_url": "https://pypi.org/project/adodbapi/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://sourceforge.net/projects/adodbapi" }, "release_url": "https://pypi.org/project/adodbapi/2.6.0.7/", "requires_dist": null, "requires_python": null, "summary": "A pure Python package implementing PEP 249 DB-API using Microsoft ADO.", "version": "2.6.0.7" }, "last_serial": 1107496, "releases": { "2.0": [], "2.4.0.1": [], "2.4.2.1": [], "2.4.2.2": [], "2.4.3": [], "2.5.0.f": [], "2.6.0.6": [], "2.6.0.7": [ { "comment_text": "", "digests": { "md5": "df7e56b741df08d10ed6766bc3c2d9c3", "sha256": "7aa5f79136a757cbeac8ea00f554e541fbd59c7f6be87443127bf0319c4bb0a3" }, "downloads": -1, "filename": "adodbapi-2.6.0.7.zip", "has_sig": false, "md5_digest": "df7e56b741df08d10ed6766bc3c2d9c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 335598, "upload_time": "2014-05-29T08:51:22", "url": "https://files.pythonhosted.org/packages/5a/f8/0e018f3b7a4e1a36673daa148285a6ae096acc6bd2ae72b16a5e32974a28/adodbapi-2.6.0.7.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "df7e56b741df08d10ed6766bc3c2d9c3", "sha256": "7aa5f79136a757cbeac8ea00f554e541fbd59c7f6be87443127bf0319c4bb0a3" }, "downloads": -1, "filename": "adodbapi-2.6.0.7.zip", "has_sig": false, "md5_digest": "df7e56b741df08d10ed6766bc3c2d9c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 335598, "upload_time": "2014-05-29T08:51:22", "url": "https://files.pythonhosted.org/packages/5a/f8/0e018f3b7a4e1a36673daa148285a6ae096acc6bd2ae72b16a5e32974a28/adodbapi-2.6.0.7.zip" } ] }