i Dont think so, its possible, better you can getit as XML. like this...

 [WebMethod]
    public String loaddata()
    {
        String str = "Provider=OraOLEDB.";
        OleDbConnection con = new OleDbConnection(str);
        con.Open();
        DataSet ds = new DataSet();
        string strsql = "select * from XXX order by ENT_XXX";
        OleDbCommand cmd = new OleDbCommand(strsql, con);
        OleDbDataAdapter adap = new OleDbDataAdapter(cmd);
        adap.Fill(ds);
        ds.Tables[0].TableName = "yyy";
        ds.DataSetName = "XXXX";
        con.Close();
        return ds.GetXml();
    }

and u can use it in flex...i

On Fri, Sep 26, 2008 at 1:04 PM, HISSAM <[EMAIL PROTECTED]> wrote:

>
>
> Thanks for replies
>
>
>  I have implemented the webservice and its working for string(as the
> webservice is returning a string CSV)
>
> I have written a web service in .net which returns a dataset which in turn
> I have to provide it to a dataprovider of one my components
>
> Is it possible to get the dataset in complete TABLE format since I can see
> the dataset in complete tabular format in .net END
>
> how should I go about??
> I;m working on this
>
>
> I'm planning to set the returned dataset to e4x format and then taking the
> result ans assigning to XML var
> what say??
>
> have to take the lunch break, everything after the break;
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to