Hi,
I've a DataGridView with Datasourse = Datatable.
The problem is that I can't get my last record updated at the database
unless I change the row where I'm editing...
Can anyone explain me why and how can I manage to get rid of this?
By the way, Im' updating with DataAdapter.Update(DataT...
more >>
Hi,
I just posted this in dotnet.c# by mistake...apologies to those whom i
have offended :O)
Is it possible to run an Update/Insert SQL statement against a
DataTable. I've seen info on Select, but not Insert/Update.
Thankyou in advance,
James Randle
...
more >>
Using .NET 1.1; SQL Server 2000.
Here' s a simple SP:
CREATE PROCEDURE dbo.atest_INS
@col1 char(20),
@col2 int output
AS
INSERT INTO test(
col1)
VALUES ( @col1 )
Select @col2 = @@Identity
Here's the .NET code:
Dim objConnection As SqlClient.SqlConnection = New
SqlClient.SqlC...
more >>
What do you use now in VS2005 to put a Dataset control on a Web form?
The option is not part of the toolbox anymore.
...
more >>