<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.omnidex.com/docs/v54/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://www.omnidex.com/docs/v54/feed.php">
        <title>Documentation dev:odbc</title>
        <description></description>
        <link>https://www.omnidex.com/docs/v54/</link>
        <image rdf:resource="https://www.omnidex.com/docs/v54/lib/tpl/simple/images/favicon.ico" />
       <dc:date>2026-04-29T23:53:43+0000</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:datasources&amp;rev=1467153531&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:filedsn&amp;rev=1467153531&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:home&amp;rev=1467153531&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:sample_c&amp;rev=1467153531&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:sample_net&amp;rev=1467153531&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.omnidex.com/docs/v54/lib/tpl/simple/images/favicon.ico">
        <title>Documentation</title>
        <link>https://www.omnidex.com/docs/v54/</link>
        <url>https://www.omnidex.com/docs/v54/lib/tpl/simple/images/favicon.ico</url>
    </image>
    <item rdf:about="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:datasources&amp;rev=1467153531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-06-28T22:38:51+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dev:odbc:datasources</title>
        <link>https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:datasources&amp;rev=1467153531&amp;do=diff</link>
        <description>Development: ODBC Interface

Overview | ODBC Datasources | Sample C# .NET Console Program | Sample C# .NET Windows Program

----------

ODBC Datasources

The standard ODBC interface uses datasources to connect to an underlying database.  Datasources provide the connection information to get to the underlying data, and each database vendor must provide their own interface to creating these datasources.  Omnidex provides several options for datasources.</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:filedsn&amp;rev=1467153531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-06-28T22:38:51+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dev:odbc:filedsn</title>
        <link>https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:filedsn&amp;rev=1467153531&amp;do=diff</link>
        <description>Development: ODBC Interface

Back to ODBC Datasources

----------

Manually Creating an ODBC File Datasource

Omnidex can use File Datasources to access Omnidex Environments.  These can be used on both Microsoft Windows and Linux platforms.  These File Datasources can be created using the wizard available from Microsoft's ODBC Data Source Administrator program, or they can be created manually using a text editor.</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:home&amp;rev=1467153531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-06-28T22:38:51+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dev:odbc:home</title>
        <link>https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:home&amp;rev=1467153531&amp;do=diff</link>
        <description>Development: ODBC Interface

Overview | ODBC Datasources | Sample C# .NET Console Program | Sample C# .NET Windows Program

----------

Overview

The Omnidex ODBC Driver is a standard-compliant ODBC driver that provides ODBC access to Omnidex Environments.  ODBC is most commonly found in a Microsoft Windows environment; however, it can also be found on UNIX platforms through available ODBC projects such as unixODBC.  Omnidex's ODBC Driver is available on both Microsoft Windows and Linux operatin…</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:sample_c&amp;rev=1467153531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-06-28T22:38:51+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dev:odbc:sample_c</title>
        <link>https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:sample_c&amp;rev=1467153531&amp;do=diff</link>
        <description>Development: ODBC Interface

Overview | ODBC Datasources | Sample C# .NET Console Program | Sample C# .NET Windows Program

----------

Sample C# .NET Console Program

The following is a very simple C# .NET console program that shows a basic connection to an Omnidex Environment and simple query processing.


using System;
using System.Collections.Generic;
using System.Text;
using System.Data.Odbc;

namespace OdxODBCSample
{
  class OdxODBCSample
  {
    static void Main(string[] args)
    {
    …</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:sample_net&amp;rev=1467153531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2016-06-28T22:38:51+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dev:odbc:sample_net</title>
        <link>https://www.omnidex.com/docs/v54/doku.php?id=dev:odbc:sample_net&amp;rev=1467153531&amp;do=diff</link>
        <description>Development: ODBC Interface

Overview | ODBC Datasources | Sample C# .NET Console Program | Sample C# .NET Windows Program

----------

Sample C# .NET Windows Program

The following is a very simple C# .NET Windows program that shows a basic connection to an Omnidex Environment and simple query processing.


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.Odbc;
using System.Drawing;
using System.Linq;
using System.Text;
using Syst…</description>
    </item>
</rdf:RDF>
