I have been looking everywhere and have been unable to find an answer to this question, I am probably looking for the wrong thing but I thought I should try here.
When I'm programming I interact with SQL databases using SqlConnection
and SqlCommand
to connect and run stored procedures. However I have seen others, such as my boss (who programs in VB), using a Dataset.xsd file which allows you to build in table adapters that you can easily reference in code. I am new to programming however all the tutorials I have seen online use the SqlCommand
method but the .xsd seems so much better to visualise and use, is there any downside to this method and why doesn't anyone but MSDN seem to reference it?
Source: https://msdn.microsoft.com/en-us/library/d7125bke.aspx
Top section Dataset.xsd, Bottom section SqlCommand
(Apologies if this has already been asked... It seems like it should have but I cant find it anywhere)