Just wondering,
What do you think the difference in performance would be between
(1.) Compiled C#
(2.) Compiled C++
(3.) and Assembly Language
And how would the mix be if some if any of these languages had to hit
against a SQL Server database
And would the differences be more or less ...
more >>
Dear all,
After updating the changes in dataset onto database thru the dataAdapter, if
the UpdateCmd of the dataAdapter is based on parameters store proc which
return a field called "LastUpdatedDate". Can it be updated onto the dataset?
=========== part of my code as follows ===========
...
more >>
Hallo everybody,
I have a DataSet contains two DataTables with a relationship between them.
Now I want to populate a DadaGrid (windows from) with the inner join of
those table . I thought about something like bounding some cells in every
row and then catching the event ItemDataBound to get th...
more >>
Hi,
I have a dataset which I am filling it using a procedure
The sturcture of the dataset table is
TranDate OrderValue
-------- ------------
01-01-2003 100
02-01-2003 110
03-01-2003 120
04-01-2003 100
05-01-2003 200
06-01-2003 300
07-01-200...
more >>
Dear friends
I have connected to an Access 2000 database and has retrieved a dataset from
the table "tblPersons". Adding a new row to the dataset is done as this:
Dim dr As DataRow
dr = ds.Tables(0).NewRow()
dr.Item("PersonID") = "some value"
dr.Item("Name") = "some value"
ds.Tables...
more >>