<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.omnidex.com/docs/v50/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/v50/feed.php">
        <title>Documentation oaenv:examples</title>
        <description></description>
        <link>https://www.omnidex.com/docs/v50/</link>
        <image rdf:resource="https://www.omnidex.com/docs/v50/lib/tpl/simple/images/favicon.ico" />
       <dc:date>2026-09-24T10:51:19+0000</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:c_oa_wine&amp;rev=1351261608&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:home&amp;rev=1351261608&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star&amp;rev=1351261609&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star_oracle&amp;rev=1351261609&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star_partitioned&amp;rev=1351261609&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:tiny&amp;rev=1351261609&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.omnidex.com/docs/v50/lib/tpl/simple/images/favicon.ico">
        <title>Documentation</title>
        <link>https://www.omnidex.com/docs/v50/</link>
        <url>https://www.omnidex.com/docs/v50/lib/tpl/simple/images/favicon.ico</url>
    </image>
    <item rdf:about="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:c_oa_wine&amp;rev=1351261608&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:26:48+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>oaenv:examples:c_oa_wine</title>
        <link>https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:c_oa_wine&amp;rev=1351261608&amp;do=diff</link>
        <description>C Example using OmniAccess API


#include &lt;stdio.h&gt;
#include &lt;string.h&gt;
#include &quot;oa.h&quot;

typedef struct
{
char name[30];
char mfg[25];
char price[6];
char year[2];
char state[2];
}  winestruct;

char message[128];
char critprompt[30];
char temp[1];

int instance, cursor;
int OASTAT_END_OF_DATA  =       11032;
oastatus_t status;
winestruct winebuf;

main()
{

/* Connect to environment catalog called WINES.EC */

   if (oaconnect(&quot;WINES.EC&quot;, &quot;&quot;, &amp;status, &quot;&quot;, &quot;&quot;, &amp;instance))
      printf(&quot;%s\n&quot;, oa…</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:home&amp;rev=1351261608&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:26:48+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>oaenv:examples:home</title>
        <link>https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:home&amp;rev=1351261608&amp;do=diff</link>
        <description>Environment Catalog Examples Headline

The following contains sweveral example Environment Catalgo source files that can be reviewed for syntax examples.

Example Environment Catalogs:

	*   Tiny - tiny flat file single table 
	*   Star - large with different options 
	*   Star - partitioned tables 
	*   Star - on an Oracle database</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star&amp;rev=1351261609&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:26:49+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>oaenv:examples:star</title>
        <link>https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star&amp;rev=1351261609&amp;do=diff</link>
        <description>environment  &quot;star_env&quot;
  set wildcards *, ?, #


/* ===================== DATABASE: STAR ==================================== */

database       &quot;star&quot;
  type         flatfile
  indexprefix  &quot;idx/STAR&quot;


/* --------------------- TABLE: DIVISIONS ---------------------------------- */

table          &quot;DIVISIONS&quot;
  physical     &quot;dat/div.dat&quot;
  primary      &quot;DIVISION&quot;
  cardinality  5

column &quot;DIVISION&quot;    datatype INTEGER       length 1  cardinality 5
column &quot;DESCRIPTION&quot; datatype C STRING      le…</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star_oracle&amp;rev=1351261609&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:26:49+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>oaenv:examples:star_oracle</title>
        <link>https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star_oracle&amp;rev=1351261609&amp;do=diff</link>
        <description>environment  &quot;star_env&quot;
  set wildcards *, ?, #


/* ===================== DATABASE: STAR ==================================== */

database       &quot;star&quot;
  type         oracle
  version      &quot;{$ORAVER}&quot;
  userclass    &quot;DEFAULT&quot; user     &quot;{star$(basename $PWD)}&quot;
                         password &quot;{star$(basename $PWD)}&quot;
  indexprefix  &quot;idx/STAR&quot;


/* --------------------- TABLE: DIVISIONS ---------------------------------- */

table          &quot;DIVISIONS&quot;
  primary      &quot;DIVISION&quot;
  cardinality  5

…</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star_partitioned&amp;rev=1351261609&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:26:49+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>oaenv:examples:star_partitioned</title>
        <link>https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:star_partitioned&amp;rev=1351261609&amp;do=diff</link>
        <description>environment  &quot;star_env&quot;
  set wildcards *, ?, #


/* ===================== DATABASE: STAR ==================================== */

database       &quot;star&quot;
  type         flatfile
  indexprefix  &quot;idx/STAR&quot;


/* --------------------- TABLE: DIVISIONS ---------------------------------- */

table          &quot;DIVISIONS&quot;
  physical     &quot;dat/div.dat&quot;
  primary      &quot;DIVISION&quot;
  cardinality  5

column &quot;DIVISION&quot;    datatype INTEGER       length 1  cardinality 5
column &quot;DESCRIPTION&quot; datatype C STRING      le…</description>
    </item>
    <item rdf:about="https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:tiny&amp;rev=1351261609&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-10-26T14:26:49+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>oaenv:examples:tiny</title>
        <link>https://www.omnidex.com/docs/v50/doku.php?id=oaenv:examples:tiny&amp;rev=1351261609&amp;do=diff</link>
        <description>ENVIRONMENT tinyenv
DATABASE tinydb
  TYPE flatfile
TABLE table1
  COLUMN myseq DATATYPE INTEGER
  COLUMN mytext DATATYPE CHAR(60)</description>
    </item>
</rdf:RDF>
