mainqndtest
v1.1.1
Last change
on this file since 42095c5 was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100755
|
File size:
761 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | |
---|
4 | """ |
---|
5 | | This file is part of the web2py Web Framework |
---|
6 | | Developed by Massimo Di Pierro <mdipierro@cs.depaul.edu>, |
---|
7 | | limodou <limodou@gmail.com> and srackham <srackham@gmail.com>. |
---|
8 | | License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html) |
---|
9 | |
---|
10 | Just for backward compatibility |
---|
11 | -------------------------------- |
---|
12 | """ |
---|
13 | __all__ = ['DAL', 'Field', 'DRIVERS'] |
---|
14 | |
---|
15 | from gluon.dal import DAL, Field, SQLCustomType |
---|
16 | from pydal.base import BaseAdapter |
---|
17 | from pydal.drivers import DRIVERS |
---|
18 | from pydal.objects import Table, Query, Set, Expression, Row, Rows |
---|
19 | from pydal.helpers.classes import SQLALL |
---|
20 | |
---|
21 | SQLDB = DAL |
---|
22 | GQLDB = DAL |
---|
23 | SQLField = Field |
---|
24 | SQLTable = Table |
---|
25 | SQLXorable = Expression |
---|
26 | SQLQuery = Query |
---|
27 | SQLSet = Set |
---|
28 | SQLRows = Rows |
---|
29 | SQLStorage = Row |
---|
Note: See
TracBrowser
for help on using the repository browser.