Home

Getting Started

Utilities

Indexing

Omnidex

Development

Tutorials

Quick Links

 

sectionpage

ODXSQL - Commands - SET Options

Example

SET

 

ODXSQL

Special Characters

System Commands

Getting Help

Commands

 

 

ERRORDISPLAY

SET ERRORDISPLAY <MESSAGE | DETAIL | FULL | NONE>

The ERRORDISPLAY set option defines the level of detail displayed in error messages. The default setting is MESSAGE.

 

Example

MESSAGE displays only the error message text.

> set errordisplay message
> connect order.env
*E* Environment requested is nonexistent (C:\omnidex\Demodata\order.env)

DETAIL displays the error message text and error numbers.

> set errordisplay detail
> connect order.env
*E* Environment requested is nonexistent
(4003 0 4502 C:\omnidex\Demodata\order.env)

FULL displays more detailed information about the error.

> set errordisplay full
> connect order.env
*E* Environment requested is nonexistent
----------------------------------------------------
error: 4003 count: 0 inst: 1 cpu: 0
warn: 0 bufflen: 6 cursor: 1 elapsed: 0
info: 4502 trans: 0
data:
0 30710 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0

buffer: C:\omnidex\Demodata\order.env
native:
locatn:
contxt:
msgs:
resrvd:

---------------------------------------------------

NONE displays nothing.

> set errordisplay none
> connect order.env
>

Top