I am currently using VS.NET 2005 to read in a text file into a sql server
database table. The code cycles through the file and using a .add with a
dataset seems to add all the rows just fine.
When the program finishes and I go do a query on the table it is empty. I
am new to using VS so I ...
more >>
Using the typed dataset designer, I dragged an existing stored procedure onto
it which has several select statements in it
For simplicity, something like:
select * from table1
select * from table2
select * from table3
It seems the designer generates on datatable based on the first selec...
more >>
Hello all,
I am working on a csharp database application that should give its end
users the ability to create new tables related to existing ones or
even create the database structure completely on their own.
I know how to do that by creating a DataSet object and adding tables
and relations...
more >>