~ubuntu-branches/debian/sid/sqlalchemy/sid

« back to all changes in this revision

Viewing changes to doc/_sources/dialects/oracle.txt

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2014-06-27 20:17:13 UTC
  • mfrom: (1.4.28)
  • Revision ID: package-import@ubuntu.com-20140627201713-g6p1kq8q1qenztrv
Tags: 0.9.6-1
* New upstream release
* Remove Python 3.X build tag files, thanks to Matthias Urlichs for the
  patch (closes: #747852)
* python-fdb isn't in the Debian archive yet so default dialect for firebird://
  URLs is changed to obsolete kinterbasdb, thanks to Russell Stuart for the
  patch (closes: #752145)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _oracle_toplevel:
2
 
 
3
 
Oracle
4
 
======
5
 
 
6
 
.. automodule:: sqlalchemy.dialects.oracle.base
7
 
 
8
 
Oracle Data Types
9
 
-------------------
10
 
 
11
 
As with all SQLAlchemy dialects, all UPPERCASE types that are known to be
12
 
valid with Oracle are importable from the top level dialect, whether
13
 
they originate from :mod:`sqlalchemy.types` or from the local dialect::
14
 
 
15
 
    from sqlalchemy.dialects.oracle import \
16
 
                BFILE, BLOB, CHAR, CLOB, DATE, \
17
 
                DOUBLE_PRECISION, FLOAT, INTERVAL, LONG, NCLOB, \
18
 
                NUMBER, NVARCHAR, NVARCHAR2, RAW, TIMESTAMP, VARCHAR, \
19
 
                VARCHAR2
20
 
 
21
 
Types which are specific to Oracle, or have Oracle-specific
22
 
construction arguments, are as follows:
23
 
 
24
 
.. currentmodule:: sqlalchemy.dialects.oracle
25
 
 
26
 
.. autoclass:: BFILE
27
 
  :members: __init__
28
 
 
29
 
.. autoclass:: DATE
30
 
   :members: __init__
31
 
 
32
 
.. autoclass:: DOUBLE_PRECISION
33
 
   :members: __init__
34
 
 
35
 
 
36
 
.. autoclass:: INTERVAL
37
 
  :members: __init__
38
 
 
39
 
 
40
 
.. autoclass:: NCLOB
41
 
  :members: __init__
42
 
 
43
 
 
44
 
.. autoclass:: NUMBER
45
 
   :members: __init__
46
 
 
47
 
 
48
 
.. autoclass:: LONG
49
 
  :members: __init__
50
 
 
51
 
 
52
 
.. autoclass:: RAW
53
 
  :members: __init__
54
 
 
55
 
 
56
 
cx_Oracle
57
 
----------
58
 
 
59
 
.. automodule:: sqlalchemy.dialects.oracle.cx_oracle
60
 
 
61
 
zxjdbc
62
 
-------
63
 
 
64
 
.. automodule:: sqlalchemy.dialects.oracle.zxjdbc