L
Luqman
I have created a master/detail asp.net page using detailview control and
gridview control, out of which detailview is editable.
I have created a dataset using Oracle Connection and I want to display
Product Name Column besides its Product ID Column.
If I use a sub query as recommended by Microsoft in of Oracle in dataset, it
gives error.
Select productID,price,amount
(Select productName from Products
where productID=A.ProductID) ProductName
from Invoice A
However, if I run the same query using Sql Server, its acceptable by
Dataset, any idea please ?
Please note, I want this query so that I can generate Insert,Update
Statements to update the records, thats why I am not using the Joins.
Best Regards,
Luqman
gridview control, out of which detailview is editable.
I have created a dataset using Oracle Connection and I want to display
Product Name Column besides its Product ID Column.
If I use a sub query as recommended by Microsoft in of Oracle in dataset, it
gives error.
Select productID,price,amount
(Select productName from Products
where productID=A.ProductID) ProductName
from Invoice A
However, if I run the same query using Sql Server, its acceptable by
Dataset, any idea please ?
Please note, I want this query so that I can generate Insert,Update
Statements to update the records, thats why I am not using the Joins.
Best Regards,
Luqman