summaryrefslogtreecommitdiff
path: root/sqlgen.py
blob: 2e0070f7e1efad0f01a039cd321cc52ebc9a74ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Help to generate SQL strings usable by the Python DB-API.

:author: Logilab
:copyright: 2000-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__ = "restructuredtext en"


from warnings import warn
warn('this module is deprecated, use logilab.database instead',
     DeprecationWarning, stacklevel=1)
from logilab.database.sqlgen import *