Metadata-Version: 1.2
Name: pymssql
Version: 2.2.1
Summary: DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)
Home-page: UNKNOWN
Author: Damien Churchill
Author-email: damoxc@gmail.com
Maintainer: pymssql development team
Maintainer-email: pymssql@googlegroups.com
License: LGPL
Project-URL: Documentation, http://pymssql.readthedocs.io
Project-URL: Source, https://github.com/pymssql/pymssql
Project-URL: Changelog, https://github.com/pymssql/pymssql/blob/master/ChangeLog_highlights.rst
Description: 
        pymssql - DB-API interface to Microsoft SQL Server
        ==================================================
        
        .. image:: https://github.com/pymssql/pymssql/workflows/Linux/badge.svg
                :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Linux%22
        
        .. image:: https://github.com/pymssql/pymssql/workflows/macOS/badge.svg
                :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22macOS%22
        
        .. image:: https://github.com/pymssql/pymssql/workflows/Windows/badge.svg
                :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Windows%22
        
        .. image:: http://img.shields.io/pypi/dm/pymssql.svg
                :target: https://pypi.python.org/pypi/pymssql/
        
        .. image:: http://img.shields.io/pypi/v/pymssql.svg
                :target: https://pypi.python.org/pypi/pymssql/
        
        A simple database interface for `Python`_ that builds on top of `FreeTDS`_ to
        provide a Python DB-API (`PEP-249`_) interface to `Microsoft SQL Server`_.
        
        .. _Microsoft SQL Server: http://www.microsoft.com/sqlserver/
        .. _Python: http://www.python.org/
        .. _PEP-249: http://www.python.org/dev/peps/pep-0249/
        .. _FreeTDS: http://www.freetds.org/
        
        Detailed information on pymssql is available on the website:
        
        `pymssql.readthedocs.io <https://pymssql.readthedocs.io/en/stable/>`_
        
        New development is happening on GitHub at:
        
        `github.com/pymssql/pymssql <https://github.com/pymssql/pymssql>`_
        
        There is a Google Group for discussion at:
        
        `groups.google.com <https://groups.google.com/forum/?fromgroups#!forum/pymssql>`_
        
        
        Getting started
        ===============
        
        pymssql wheels are available from PyPi. To install it run:
        
        .. code-block:: bash
        
            pip install pymssql
        
        Most of the times this should be all what's needed.
        The official pymssql wheels bundle a static copy of FreeTDS  
        and have SSL support so they can be used to connect to Azure.
        
        
        Basic example
        =============
        
        .. code-block:: python
        
            conn = pymssql.connect(server, user, password, "tempdb")
            cursor = conn.cursor(as_dict=True)
        
            cursor.execute('SELECT * FROM persons WHERE salesrep=%s', 'John Doe')
            for row in cursor:
                print("ID=%d, Name=%s" % (row['id'], row['name']))
        
            conn.close()
        
        
        Recent Changes
        ==============
        
        Version 2.2.1 - 2021-04-15 - Mikhail Terekhov
        =============================================
        
        General
        -------
        
        - Publish Linux wheels for the all supported platforms.
          manylinux1 wheels are not compatible with modern glibc and OpenSSL.
        - Add readthedocs configuration file.
Keywords: mssql,SQL Server,database,DB-API
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
