Remote view sql designer being too clever
- From: "saficorp" <saficorp@xxxxxxxxxxx>
- Date: 5 Mar 2006 14:44:08 -0800
Hi
I have a remote view that requires a valid sql substring join which
works very well.
FROM {oj dbo.ORDER_DETAILS Order_details ;
INNER JOIN dbo.ORDER_MSTR Order_mstr ;
ON substring(Order_details.log_rec_num,1,10) = Order_mstr.LOG_NUM ;
LEFT OUTER JOIN dbo.PRODUCT_NO_MSTR Product_no_mstr ;
ON Order_details.PROD_NO = Product_no_mstr.PROD_NO};
however if I try and modify fields with the remote view designer under
VFP9 it reports back that it contains invalid content and wants to
always regenerate the sql into
FROM ;
{oj dbo.ORDER_DETAILS Order_details ;
INNER JOIN dbo.ORDER_MSTR Order_mstr ;
ON Order_details.LOG_REC_NUM = Order_mstr.LOG_NUM ;
LEFT OUTER JOIN dbo.PRODUCT_NO_MSTR Product_no_mstr ;
ON Order_details.PROD_NO = Product_no_mstr.PROD_NO};
So I have to always create new views and then edit the sql 'offline'
with my join. The other programs can call it and i can browse without
any issues, but as i'm still designing it is getting painful to keep
creating the same structures.
Does anybody perhaps know of a way to tell foxpro not to error check at
this depth?
Thanks in advance
Colin
.
- Follow-Ups:
- Re: Remote view sql designer being too clever
- From: Stefan Wuebbe
- Re: Remote view sql designer being too clever
- Prev by Date: Re: [OT] Toys
- Next by Date: Re: Populating Combo Boxes in Vfp 9
- Previous by thread: CREATEOBJECTEX
- Next by thread: Re: Remote view sql designer being too clever
- Index(es):
Relevant Pages
|