BUG: Remote View Has Only Two Join Types (157525)
The information in this article applies to:
- Microsoft Visual FoxPro for Windows 5.0
- Microsoft Visual FoxPro for Windows 5.0a
- Microsoft Visual FoxPro for Windows 6.0
- Microsoft Data Access Components 2.5
This article was previously published under Q157525 SYMPTOMS The Remote View designer has only two types of Join
conditions, Left Outer and None. CAUSE Visual FoxPro delegates the SQL query to the ODBC driver in
order to be compatible across multiple back ends. Visual FoxPro uses the ODBC
outer join extension, which supports only left outer join. RESOLUTION The following code sample creates a remote view using a
inner join:
Note The user must have appropriate permissions to perform these operations on the database.
*Start Code Example
close all
create data Test1
MyConnstr="driver=sql server; ";
+ server=MyServernt;uid=UserName;pwd=StrongPassword;database=pubs"
create connection mycon connstr (MyConnstr)
create sql view Test1 remote connection mycon Share as select * from;
titles inner join titleauthor on ;
titles.title_id=titleauthor.title_id
*End Code Example
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section of this article.
Modification Type: | Major | Last Reviewed: | 10/31/2003 |
---|
Keywords: | kbbug KB157525 kbAudDeveloper |
---|
|