This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
programs:odxsql:commands:connect [2009/12/02 14:34] tdo |
programs:odxsql:commands:connect [2012/10/26 14:57] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| {{page>:top_add&nofooter&noeditbtn}} | {{page>:top_add&nofooter&noeditbtn}} | ||
| <html><div align="center"><span style="color:red">DRAFT</span></div></html> | <html><div align="center"><span style="color:red">DRAFT</span></div></html> | ||
| - | ====== OdxSQL Connect ====== | + | ====== OdxSQL Connect Environment ====== |
| ===== Description ===== | ===== Description ===== | ||
| CONNECT establishes a connection to an Omnidex Environment and opens a cursor. | CONNECT establishes a connection to an Omnidex Environment and opens a cursor. | ||
| - | Enter CONNECT followed by the environment catalog file spec and any desired parameters at the prompt. | + | CONNECT is followed by either an Omnidex Environment filespec or a File DSN for ODBC, JDBC or CLOA connections. |
| ===== Syntax ===== | ===== Syntax ===== | ||
| Line 16: | Line 15: | ||
| [USING api] | [USING api] | ||
| [WITH options] | [WITH options] | ||
| + | ===== Discussion ===== | ||
| == Omnidex Environment == | == Omnidex Environment == | ||
| + | Reuired: This is the Omnidex Environment or ODBC or JDBC File DSN. If connecting to a File DSN then the USING api clause with ODBC, JDBC or OA needs to be specified. | ||
| == [ON host[:port]] == | == [ON host[:port]] == | ||
| + | Optionally specifiy the Host and Port for a network connection. | ||
| + | |||
| == [AS [user]/[password]] == | == [AS [user]/[password]] == | ||
| - | Specify a username and password in the AS [ user]/[ password] clause. | + | Optionally specify a username and password in the AS [ user]/[ password] clause. |
| == [USING api] == | == [USING api] == | ||
| + | Optionally specify which API to use for processing subsequent statements. The USING clause facilitates the testing of ODBC and JDBC environments for testing and optimization. | ||
| - | * ODBC | + | Allowable values for API are: |
| - | * JDBC | + | * ODBC - Open Data Base Connectivity |
| - | * CLOA | + | * JDBC - Java Data Base Connectivity |
| + | * CLOA - Client OmniAccess. | ||
| * OA - OmniAccess - this is the default if no USING clause is specified. | * OA - OmniAccess - this is the default if no USING clause is specified. | ||
| == [WITH options] == | == [WITH options] == | ||
| - | Specify connect options in the WITH clause. | + | Optionally specify connect options in the WITH clause. |
| + | |||
| + | The NOCURSOR option will cause a connection to be established without opening a cursor. | ||
| - | The NOCURSOR option, will cause a connection to be established without opening a cursor. | ||
| ===== Examples ===== | ===== Examples ===== | ||