Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Eric A. Johnson #1
DataAdapter question
I'm using ADO style. I have an Access database with four tables that I will
want to do queries on. I will want to do queries on all four tables, at
least individually, and possibly at the same time (using "INNER JOIN"). My
question: Is it better to have four individual DataAdapters, one for each
table, with the DataSet linking to a different one for each query; one
single DataAdapter, that would connect to all four tables at once; or some
kind of combination of the two? Any tips? As you can tell, I'm rather a
newbie at databases.
Thanks,
Eric
Eric A. Johnson Guest
-
DataAdapter and multiple result sets
I have a SQL Server stored procedure that returns multiple recordsets (three of them), in the same way that sp_helpdb does (try entering EXEC... -
update sql unique key with dataadapter
I got a typed dataset of data from a Sql server and i binded them on a grid, then if the user edit the grid all changes will be sent back throw... -
DataAdapter
Hi I use a DataAdapter. To which is pass a Stored Proc and Connection SqlDataAdapter DA = new SqlDataAdapter("storedProd",Conn); how do i... -
Distributed Arch Guidance for DataAdapter and WS
My project involves editing a complex set of data populated from 5-6 tables in a smart client WinForms process. 1. Clients requests data. 2.... -
DataAdapter Insert data into a query
I have the query "SELECT * FROM RIGHT JOIN VisiterInfo ON .=VisiterInfo." which I use to select data from two tables to display on screen. I use... -
Elton Wang #2
Re: DataAdapter question
Hi Eric,
If you only need one result set in the application, you can just use one
join query, of course, only one DataAdapter. Even if you want to get four
DataTables in one DataSet, you can still use only one DataAdapter:
OleDbDataAdapter dap = new OleDbDataAdapter("Select * FROM TABLE_ONE; Select
* FROM TABLE_TWO; Select * FROM TABLE_THREE; Select * FROM TABLE_FOUR",
CONNECTION_STRING);
DataSet ds = new DataSet();
dap.fill(ds);
can fill into ds with four DataTables in one operation.
HTH
"Eric A. Johnson" <nothere@dontlookforme.com> wrote in message
news:nSG4f.2790$q%.2655@newssvr12.news.prodigy.com ...> I'm using ADO style. I have an Access database with four tables that I
> will want to do queries on. I will want to do queries on all four tables,
> at least individually, and possibly at the same time (using "INNER JOIN").
> My question: Is it better to have four individual DataAdapters, one for
> each table, with the DataSet linking to a different one for each query;
> one single DataAdapter, that would connect to all four tables at once; or
> some kind of combination of the two? Any tips? As you can tell, I'm
> rather a newbie at databases.
>
> Thanks,
> Eric
>
Elton Wang Guest



Reply With Quote

