Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 7fd7c575020aa78a8e2e309ea8909f43 > files > 875

gdal-1.6.2-6.fc13.i686.rpm

<html>
<head>
<title>ODBC RDBMS</title>
</head>

<body bgcolor="#ffffff">

<h1>ODBC RDBMS</h1>

OGR optionally supports spatial and non-spatial tables accessed via ODBC. 
ODBC is a generic access layer for access to many database systems, and
data that can be represented as a database (collection of tables). ODBC
support is potentially available on Unix and Windows platforms, but is
only included in unix builds by special configuration options.<p>

ODBC datasources are accessed using a datasource name of the form
<b>ODBC:<i>userid</i>/<i>password</i>@<i>dsn</i>,<i>tablename(geometrycolname),...</i>:<i>srs_tablename(sridcolumn,srtextcolumn)</i></b>.
With optional items dropped the following are also acceptable:

<ul>
<li> <b>ODBC:<i>userid</i>/<i>password</i>@<i>dsn</i></b>
<li> <b>ODBC:<i>userid</i>@<i>dsn</i>,<i>table_list</i></b>
<li> <b>ODBC:<i>dsn</i>,<i>table_list</i></b>
<li> <b>ODBC:<i>dsn</i></b>
<li> <b>ODBC:<i>dsn</i>,<i>table_list</i>:<i>srs_tablename</i></b>
</ul>

The <b><i>dsn</i></b> is the ODBC Data Source Name.  Normally ODBC datasources
are setup using an ODBC Administration tool, and assigned a DSN.  That DSN
is what is used to access the datasource.<p>

By default the ODBC searches for GEOMETRY_COLUMNS table.  If found it is
used to identify the set of spatial tables that should be treated as layers
by OGR.  If not found, then all tables in the datasource are returned as
non-spatial layers.  However, if a table list (a list of comma seperated table
names) is provided, then only those tables will be represented as layers
(non-spatial).  Fetching the full definition of all tables in a complicated
database can be quite timeconsuming, so the ability to restrict the set of
tables accessed is primarily a performance issue.<p>

If the GEOMETRY_COLUMNS table is found, it is used to select a column to 
be the geometry source.  If the tables are passed in the datasource name, 
then the geometry column associated with a table can be included in 
round brackets after the tablename.  It is currently a hardcoded assumption
that the geometry is in Well Known Binary (WKB) format if the field
is binary, or Well Known Text (WKT) otherwise.  The GEOMETRY_COLUMNS
table should have at least the columns F_TABLE_NAME, F_GEOMETRY_COLUMN
and GEOMETRY_TYPE. <p>

If the table has a geometry column, and has fields called XMIN, YMIN, XMAX
and YMAX then direct table queries with a spatial filter accelerate the
spatial query.  The XMIN, YMIN, XMAX and YMAX fields should represent the
extent of the geometry in the row in the tables coordinate system.<p>

<p>By default, SQL statements are passed directly to the underlying database engine.
It's also possible to request the driver to handle SQL commands with <a href="/ogr/ogr_sql.html">OGR SQL</a> engine,
by passing <strong>"OGRSQL"</strong> string to the ExecuteSQL() method, as name of the SQL dialect.</p>

<h2>Creation Issues</h2>

Currently the ODBC OGR driver is read-only, so new features, tables and
datasources cannot normally be created by OGR applications.  This limitation
may be removed in the future. <p>
<h3>See Also</h3>

<ul>
<li> <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odbcodbc_api_reference.asp">MSDN ODBC API Reference</a><p>
</ul>

</body>
</html>