<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.omnidex.com/docs/v51/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/v51/feed.php">
        <title>Documentation tutorials</title>
        <description></description>
        <link>https://www.omnidex.com/docs/v51/</link>
        <image rdf:resource="https://www.omnidex.com/docs/v51/lib/tpl/simple/images/favicon.ico" />
       <dc:date>2026-04-23T08:51:04+0000</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:home&amp;rev=1351262779&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_ddl&amp;rev=1351262779&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_flatfile&amp;rev=1351262779&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_flatfile_java_jdbc&amp;rev=1351262779&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.omnidex.com/docs/v51/lib/tpl/simple/images/favicon.ico">
        <title>Documentation</title>
        <link>https://www.omnidex.com/docs/v51/</link>
        <url>https://www.omnidex.com/docs/v51/lib/tpl/simple/images/favicon.ico</url>
    </image>
    <item rdf:about="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:home&amp;rev=1351262779&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:46:19+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>tutorials:home</title>
        <link>https://www.omnidex.com/docs/v51/doku.php?id=tutorials:home&amp;rev=1351262779&amp;do=diff</link>
        <description>Tutorials

	*   Simple DDL for flat file environment. 
	*   Creating a very simple flat file Environment and doing retrievals. 
	*   Writing a simple JDBC program to access the simple flatfile Environment.</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_ddl&amp;rev=1351262779&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:46:19+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>tutorials:simple_ddl</title>
        <link>https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_ddl&amp;rev=1351262779&amp;do=diff</link>
        <description>Create a simple functioning Environment with an Omnidex index


os&gt; odxsql
&gt; CREATE ENVIRONMENT IN &quot;myenv.xml&quot;;
&gt; CREATE DATABASE mydb TYPE FLATFILE IN &quot;myenv.xml&quot;;
&gt; CREATE TABLE mytable PHYSICAL &quot;test1&quot; 
       (myseq integer, 
        mytext char(60) quicktext
       ) 
       IN &quot;myenv.xml&quot;;
&gt; CONNECT myenv.xml;
&gt; UPDATE INDEXES;
&gt; SELECT * FROM mytable where mytext = '&lt;some criteria&gt;';
&gt; DISCONNECT;
&gt; EXIT
os&gt;</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_flatfile&amp;rev=1351262779&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:46:19+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>tutorials:simple_flatfile</title>
        <link>https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_flatfile&amp;rev=1351262779&amp;do=diff</link>
        <description>Simple Flat File

Step 1 - Creating the Omnidex Environment Source DDL

Omnidex uses the SQL Standard Data Definition Statement (DDL) for defining the Omnidex metadata used to connect to a data store.

The following sample Environment Catalog Source is the minimum set of statements that will compile into an Omnidex Compiled Environment.</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_flatfile_java_jdbc&amp;rev=1351262779&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:46:19+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>tutorials:simple_flatfile_java_jdbc</title>
        <link>https://www.omnidex.com/docs/v51/doku.php?id=tutorials:simple_flatfile_java_jdbc&amp;rev=1351262779&amp;do=diff</link>
        <description>Simple Java program using JDBC to access an Omnidex Environment

Step 1 - Create the JAVA program to test JDBC Connect

 
/** Java Program to test a connection to the Omnidex
 *  JDBC driver.
 *	Make sure OdxNet is running
 *	Create a JDBC Datasource file with DSEDIT.
 *	Make sure there is a path setting to the Omnidex bin directory.
*/
import java.io.*;
import java.sql.*;
public class OdxTestConnection 
{
  static public void main(String args[]) 
  {
    Connection odxconnection = null;
	try 
	…</description>
    </item>
</rdf:RDF>
