This is an old revision of the document!
The following is a list of fixes and enhancements for the Omnidex 5.x series of releases.
For a list of fixes and enhancements for Omnidex 5.0 series, click here.
For a list of fixes and enhancements for Omnidex 4.x series, click here.
odxsql> connect [localhost:7555]c:\\dev\\odx\\myodx.xml;
Now the following syntax is allowed:
odxsql> connect [localhost:7555]c:\dev\odx\myodx.xml;
Omnidex Index is a MDK index with the No Parse and No Exclude options (dbinstal NP, NE). QuickText Index is a MDK index with the keyword option (dbinstal KW). FullText Index is a MDK index with the proximity option (dbinstal PX).
As of Omnidex 5.1 XML Environments are the preferred approach over the legacy Omnidex Environment Catalogs using the original OmniAccess Environment syntax and compiled with oacomp. With 5.1, XML Environments can be more easily maintained with the OdxSQL using the DDL CREATE statements. The new Omnidex Environment file is stored in the common XML format.
select * \ from grs \ where criteria
and not have to end with a terminator. Now you can do:
select * from grs where criteria;
and not have to enter the continuation characters.
To get the previous behavior, use the following OdxSQL SET option.
set termination off
and it will use the 5.0-style behavior.