Difference between revisions of "ADO TABLELIST()"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Function to return information about a virtual table ==Syntax== ADO_TABLELIST(cConnstr) ==See Also== ALTER VIRTUALTABLE, CREATE VIRTUALTABLE, ODBC_TABL...")
 
(See Also)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
Function to return information about a virtual table
+
Function to return a comma separated list of table names for a given ADO connection string or a VFP database container (.dbc file).
  
 
==Syntax==
 
==Syntax==
ADO_TABLELIST(cConnstr)
+
ADO_TABLELIST(cConnstr | cDBC)
  
 
==See Also==
 
==See Also==
[[ALTER VIRTUALTABLE]], [[CREATE VIRTUALTABLE]], [[ODBC_TABLELIST()]], [[Virtual Table Properties]], [[Virtual Tables]], [[VTINFO()]]
+
[[ADO_PROVIDERLIST()]], [[ALTER VIRTUALTABLE]], [[CREATE VIRTUALTABLE]], [[ODBC_TABLELIST()]], [[Virtual Table Properties]], [[Virtual Tables]], [[VTINFO()]], [[Working with OleDB]]
  
 
==Description==
 
==Description==
The ADO_TABLELIST() function returns a comma-separated list of table names for the specified connection.
+
The ADO_TABLELIST() function returns a comma-separated list of table names for the specified OLEDB connection string or Visual Foxpro database filename (.dbc).
  
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
? ado_tablelist("lianja_mysqltest")
+
? ado_tablelist('D:\Recipes\Data\recipes.dbc')
actor,address,category,city,...
+
auto_ids,foodcat,ingredie,recingrd,recipes...
 +
 
 +
? ado_tablelist('oledb:Provider=VFPOLEDB;Mode=Share Deny None;Data Source=D:\Recipes\Data\recipes.dbc;Exclusive=No')
 +
auto_ids,foodcat,ingredie,recingrd,recipes...
 
</code>
 
</code>
  

Latest revision as of 10:23, 21 September 2023

Purpose

Function to return a comma separated list of table names for a given ADO connection string or a VFP database container (.dbc file).

Syntax

ADO_TABLELIST(cConnstr | cDBC)

See Also

ADO_PROVIDERLIST(), ALTER VIRTUALTABLE, CREATE VIRTUALTABLE, ODBC_TABLELIST(), Virtual Table Properties, Virtual Tables, VTINFO(), Working with OleDB

Description

The ADO_TABLELIST() function returns a comma-separated list of table names for the specified OLEDB connection string or Visual Foxpro database filename (.dbc).

Example

? ado_tablelist('D:\Recipes\Data\recipes.dbc')
auto_ids,foodcat,ingredie,recingrd,recipes...
 
? ado_tablelist('oledb:Provider=VFPOLEDB;Mode=Share Deny None;Data Source=D:\Recipes\Data\recipes.dbc;Exclusive=No')
auto_ids,foodcat,ingredie,recingrd,recipes...