Hello:

> strSQL = "select customerid from customers; select orderid, customerid from
> orders";
> FbDataAdapter da = new FbDataAdapter (strSQL, strConn); // strConn being
> connection string
> da.TableMappings.Add("Table", "Customers");
> da.TableMappings.Add(Table1", "Orders");
> da.Fill(ds);
>
> can we?
> Am I supposed to do something like this?

No, it's not supported.

But you can use two DataAdapters to fill the two tables ( The
DataAdapter has an overload of the Fill method to fill a single table
whitin a DataSet )




-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog            : http://carlosga.wordpress.com/
FirebirdClient  : http://www.firebirdsql.org/
XMPP Client     : http://code.google.com/p/xmppclient/
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to