source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/sql.py @ 42095c5

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
10Just for backward compatibility
11--------------------------------
12"""
13__all__ = ['DAL', 'Field', 'DRIVERS']
14
15from gluon.dal import DAL, Field, SQLCustomType
16from pydal.base import BaseAdapter
17from pydal.drivers import DRIVERS
18from pydal.objects import Table, Query, Set, Expression, Row, Rows
19from pydal.helpers.classes import SQLALL
20
21SQLDB = DAL
22GQLDB = DAL
23SQLField = Field
24SQLTable = Table
25SQLXorable = Expression
26SQLQuery = Query
27SQLSet = Set
28SQLRows = Rows
29SQLStorage = Row
Note: See TracBrowser for help on using the repository browser.