Overview of FoxPro for Windows Client-Server Query WizardLast reviewed: April 30, 1996Article ID: Q114585 |
The information in this article applies to:
SUMMARYThe information below describes the Client-Server Query Wizard. This information is also found in FoxPro online Help in the "Client-Server Query Wizard" topic.
MORE INFORMATIONThe Client-Server Query Wizard lets you connect to any ODBC data server and use a SQL query to retrieve data from it. It creates a query file with a .CSQ extension. Each time you run the query file, it will initiate a connection with the server and run the query. FoxPro .CSQ queries allow you to use aggregate functions (such as AVG, COUNT, MAX, MIN, or SUM) in your query where the ODBC source allows that capability. The resulting query is read-only; you can browse it or incorporate it into a report, but you cannot update the records. NOTE: The Client-Server Query Wizard is available only if you are using the Professional edition of Microsoft FoxPro version 2.6. Some back-end database servers do not support all the functionality available through the wizard, such as outer joins. Be sure to check to see if your ODBC driver supports the functions you request from the wizard. For information on troubleshooting connectivity issues, see Connectivity Kit Error Messages. Before using the Client-Server Query Wizard, you need to:
Client-Server Query Wizard StepsThe Client-Server Query Wizard has seven main steps:
Step 1 of 7: Selecting a Server and Connecting to ItIn this step, you log onto the server or data source you want to connect to when running your query. Check with your system administrator if you need help with server names or your user identifier and password. NOTE: If you enter a password on this screen, the resulting query will be password-protected; that is, you will need to supply this password every time you run the query. Data Source: From the list, select the name of the server or data source you want to use. The list contains the names of all registered data sources from the ODBC.INI file. User Identifier: Enter your user identifier or user name. Password: Enter your password, if required, for this server. Database: (This name is optional) If there is more than one database on the server, enter the name of the database you want to use.
Step 2 of 7: Selecting and Joining TablesFirst select the table or tables you want to use from the Available Tables list. NOTE: If you are using the Query Wizard from the Catalog Manager, the tables on which you want to base your query must reside in the open catalog. If there are no tables found in the catalog and you click the Query Wizard button, you will be prompted to name your query and select a table on which to base the query. Next, RQBE will start from which you can create a query. If you are not using the Query Wizard from the Catalog Manager, you can also choose the Open Table... button to use a table that is not currently open.
Step 2a of 7: Joining TablesWhen you select more than one table, the wizard displays this screen so you can join the tables. Select matching fields from the parent table and the child table, then choose Add. For example, if you are setting a join between the Customer table and the Invoices table, you could set Customer.cno equal to Invoices.cno. The Outer Join check box affects which records will be included in the output of your query. When the box is checked, all the parent table records are included, even if they do not have a matching record in the child table. When the box is not checked, your query will only contain records from the parent table if matches are found in the child table. If you want to delete the relationship between two tables, select the relationship and choose the Remove button. When you are done joining tables, choose Next to continue to the next step.
Step 3 of 7: Selecting Fields and Adding ExpressionsSelect the fields you want to include in the query. The list of available fields includes fields from all the tables you have selected. To Select Fields, You Can:
Adding Expressions to Your Query: You can also add expressions to your query. An expression is a combination of operators, functions, and field names that evaluate to a single value. For example, you might want your query to include the sum of all prices:
SUM(cost)When you choose the Expression... button, the wizard displays the Expression dialog, where you can create the expression to add to your query. To Create an Expression with the Expression Dialog:
Step 4 of 7: Grouping the Query ResultsFrom the Available Fields list, select up to three fields by which to group the records in your query results. For example, if you choose to group by state and zip code, the records will be sorted into groups by state, then grouped and sorted by zip code within each state. This type of grouping can be useful in conjunction with any expressions you incorporate into your query. For example, you could include an expression which does a SUM of all sales, then group the results by State, to find the total sales by state.
Step 5 of 7: Setting the Sort Order for the RecordsIn this screen, you determine how the records retrieved by the query willbe sorted. Select up to three fields from the Available Fields list to set the sort order of the records. You can sort on fields from any of the selected tables. For example, if you choose Customer.Name and Invoice.Ino, the records will be sorted by customer name, from the Customer table, and then by invoice number from the Invoices table. Choose the Ascending option to sort records from the beginning of the alphabet, the lowest number, or the earliest date; choose the Descending option to sort records from the end of the alphabet, the highest number, or the latest date.
Step 6 of 7: Limiting the Contents of the QueryIn this screen you can add an optional expression to further limit the records retrieved by the query. The effect is like filtering the results so that only records meeting certain criteria are included in the query results. For example, you could limit the search to last names starting with J by using the expression:
Customer.lastname BeginsWith JFirst select a field from the Fields list and an operator from the Operator list. Then enter a comparison value in the Value field, and choose the Add button to add the new expression to the expression box. Entering Values: In the Value field, type the value you want the query to compare the field against. For example, if you are looking for customer records with a particular last name, type that name in the Value box, after choosing the last name field and the equal-sign operator. The resulting query expression would look like this:
LAST_NAME = JOHNSONCombining Expressions: You can create more complex queries by adding more expressions. When you combine expressions, they are combined with an AND operator by default. For example:
STATE = WA AND ORDER > $100If you want the query to find records that match either expression, but not both, choose the OR button to add an OR operator between expressions. For example:
STATE = WA OR STATE = CAYou can add parentheses around an expression to make sure the expressions are evaluated as a unit. For example:
(STATE=WA OR STATE=CA) AND ORDER > $100To Create an Expression:
Step 7 of 7: Previewing, Saving, and Browsing Your QueryChoose the Preview... button to see the results of your query in a Browse window. If you are satisfied with the results, choose one of the following options, and choose the Finish button.
|
Additional reference words: FoxWin 2.60 foxhelp.dbf
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |