FMgetFieldTabs(conn)
conn : | Connector to Database |
The function FMgetFieldTabs
is designed to interact with a FileMaker database using SQL queries. It is part of the SG-Library and was created by Tim Lueth. The function does not return any values directly but performs a series of SQL queries to retrieve information from the database.
FMsqlQuery
with the conn
parameter and the SQL query 'SELECT TableName FROM FileMaker_Tables'
. This query retrieves the names of all tables in the FileMaker database.FMsqlQuery
again with the conn
parameter and the SQL query 'SELECT * FROM FileMaker_Tables'
. This query retrieves all information from the FileMaker_Tables
table, which likely includes metadata about each table in the database.FMsqlQuery
with the conn
parameter and the SQL query 'SELECT * FROM FileMaker_Fields'
. This query retrieves all information from the FileMaker_Fields
table, which likely includes metadata about each field in the database tables.The function relies on the FMsqlQuery
function to execute the SQL queries. The results of these queries are not stored or returned by FMgetFieldTabs
, suggesting that the primary purpose of this function is to perform these queries for their side effects, such as logging or updating a user interface.