Difference between revisions of "SQL Remote Data Connectivity Functions"

From Lianjapedia
Jump to: navigation, search
 
(Description)
 
(22 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{DISPLAYTITLE:Working with ODBC}}
 +
[[Category:Database Stored Procedures]]
 
==Purpose==
 
==Purpose==
Remote data connectivity functions
+
Remote ODBC data connectivity functions
  
 +
<div style="margin-bottom:5px;padding:5px;border:0px solid orange;border-left:5px solid orange;background:#fff8dc;vertical-align:middle;position:relative;">
 +
[[File:bm-noteicon.png|top|40px|link=]]<div style="position:absolute;top:3px;margin-bottom;bottom:5px;margin-left:50px;"><b> Pro Tip</b>
 +
You can also use [[Virtual_Tables|Virtual Tables]] to work seamlessly with external SQL databases.
 +
</div>
 +
<span style="height:6px;"> </span>
 +
</div>
  
 
==See Also==
 
==See Also==
[[CREATE CONNECTION]], [[SQL INSERT|INSERT]], [[SQL SELECT|SELECT]], [[SQL UPDATE|SELECT]]
+
[[SQL INSERT|SQL INSERT]], [[SQL SELECT|SQL SELECT]], [[SQL UPDATE|SQL UPDATE]], [[SQL_DELETE|SQL DELETE]]
 
+
  
 
==Description==
 
==Description==
The Visual FoxPro compatible remote data connectivity functions are used to handle gateway connections to third party data sources.  The following functions are available:
+
The Visual FoxPro compatible remote data connectivity functions are used to handle connections to ODBC sources.  The following functions are available:
 
+
  
{| class="wikitable"
+
{| class="wikitable" width="100%"
!Function||Description
+
!width="30%"|Function||width="70%"|Description
 
|-
 
|-
 
|[[SQLCANCEL()]]||Request that an executing SQL statement be cancelled
 
|[[SQLCANCEL()]]||Request that an executing SQL statement be cancelled
Line 38: Line 44:
 
|[[SQLSETPROP()]]||Set property settings for a connection
 
|[[SQLSETPROP()]]||Set property settings for a connection
 
|-
 
|-
|[[SQLSTRINGCONNECT()]]||Connect to a data source using a gateway connection string
+
|[[SQLSTRINGCONNECT()]]||Connect to a data source
 
|-
 
|-
 
|[[SQLTABLES()]]||Store data source table names to a table
 
|[[SQLTABLES()]]||Store data source table names to a table
 +
|-
 +
|[[SQLTRANSACTION()]]||Start a transaction
 
|-
 
|-
 
|}
 
|}
  
  
 
==Products==
 
Recital, Recital Server
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Reference]]
 
 
[[Category:SQL|Remote Data Connectivity Functions]]
 
[[Category:SQL|Remote Data Connectivity Functions]]
[[Category:Remote Data Connectivity]]
+
[[Category:ODBC Functions]]
[[Category:Remote Data Connectivity Functions]]
+
[[Category:SQL Functions]]
 +
[[Category:Databases]]
 +
[[Category:Data Integration]]

Latest revision as of 11:49, 10 May 2024

Purpose

Remote ODBC data connectivity functions

Bm-noteicon.png
Pro Tip

You can also use Virtual Tables to work seamlessly with external SQL databases.

See Also

SQL INSERT, SQL SELECT, SQL UPDATE, SQL DELETE

Description

The Visual FoxPro compatible remote data connectivity functions are used to handle connections to ODBC sources. The following functions are available:

Function Description
SQLCANCEL() Request that an executing SQL statement be cancelled
SQLCOLUMNS() Store column information to a cursor
SQLCOMMIT() Commit a transaction
SQLCONNECT() Connect to a data source
SQLDISCONNECT() Disconnect from a data source
SQLERROR() Return descriptive message for last error
SQLEXEC() Send an SQL statement to a data source
SQLGETPROP() Query property settings for a connection or the environment
SQLMORERESULTS() Check if more results sets are available and if so, copy next results set to a cursor
SQLPREPARE() Prepare an SQL statement that will be executed by the SQLEXEC() function
SQLROLLBACK() Rollback a transaction
SQLSETPROP() Set property settings for a connection
SQLSTRINGCONNECT() Connect to a data source
SQLTABLES() Store data source table names to a table
SQLTRANSACTION() Start a transaction