#!/usr/bin/env python # -*- coding: utf-8 -*- """ | This file is part of the web2py Web Framework | Developed by Massimo Di Pierro , | limodou and srackham . | License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html) Just for backward compatibility -------------------------------- """ __all__ = ['DAL', 'Field', 'DRIVERS'] from dal import DAL, Field, SQLCustomType from dal.adapters.base import BaseAdapter, DRIVERS from dal.objects import Table, Query, Set, Expression, Row, Rows from dal.helpers.classes import SQLALL SQLDB = DAL GQLDB = DAL SQLField = Field SQLTable = Table SQLXorable = Expression SQLQuery = Query SQLSet = Set SQLRows = Rows SQLStorage = Row