summaryrefslogtreecommitdiff
path: root/sqlgen.py
blob: b8e311ea57b7cfcfd05992952f4a911ddacb1cb1 (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: General Public License version 2 - 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 *