Ask a Question related to ASP.NET General, Design and Development.
-
Beza #1
Send Records Straight To DataTable
I know how to use the Fill method of a SqlDataAdapter (into a DataSet) but
it seems quite long winded, if I just want to get the results into a
DataTable object. Is there a better way of doing this?
Beza Guest
-
Which db connection is better? DSN vs. straight
> hard code the connection into your code calling the servername and database file) DSN ODBC is deprecated. Use OLEDB / DSN-less whenever... -
Adding Records to DataTable/Combining two tables/Take Data from DGrid to DTable
Forgive me if this is long... I need to know how to add new rows to a dataTable or combine the data of two tables(with the same format). I'll... -
Straight connectors?
Hi, is it possible to create straight connectors in Freehand? E.g. from one corner of a rectangle to a corner of another rectangle, i.e. from one... -
Rotation but keep going straight???
I have model that I'm translating along the x axis e.g.(pModel.translate(2,0,0)). At a certian point on the x axis e.g.(if pModel.transform.position... -
what exactly do you need to escape? (I can never get this straight)
Steve <me@home.com> wrote: You never *need* to escape slash. The only time you might want to escape it is inside a quote-like operator that has... -
William F. Robertson, Jr. #2
Re: Send Records Straight To DataTable
It isn't long winded at all.
DataTable dt = new DataTable();
SqlDataAdapter sa = new SqlDataAdapter();
sa.SelectCommand = new SqlCommand();
sa.SelectCommand.Connection = new SqlConnection( "connectionstring" );
sa.SelectCommand.CommandText = "Select * from *";
sa.SelectCommand.Connection.Open();
sa.Fill( dt );
You can combine some of these lines together with the constructor, but I was
just showing you the easy way to follow.
HTH,
bill
"Beza" <beza@beza.com> wrote in message
news:edTA5JKPDHA.2228@tk2msftngp13.phx.gbl...> I know how to use the Fill method of a SqlDataAdapter (into a DataSet) but
> it seems quite long winded, if I just want to get the results into a
> DataTable object. Is there a better way of doing this?
>
>
William F. Robertson, Jr. Guest
-
Kevin Spencer #3
Re: Send Records Straight To DataTable
Use a DataReader to get the data. Then create a new instance of a DataTable.
Then loop through the DataReader, adding a row to the DataTable with each
pass, and fill the columns of the row from the columns of the DataReader
row.
HTH,
Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of Little things.
"Beza" <beza@beza.com> wrote in message
news:edTA5JKPDHA.2228@tk2msftngp13.phx.gbl...> I know how to use the Fill method of a SqlDataAdapter (into a DataSet) but
> it seems quite long winded, if I just want to get the results into a
> DataTable object. Is there a better way of doing this?
>
>
Kevin Spencer Guest



Reply With Quote

