c# - How to assign table name for dataset tables -
I'm creating three stored process in MySQL. It's working fine now I read the third process using C # Returns two tables in the table, Table 1 How can I assign the names of each table? When using more than 8 or 10, I actually confuse the names of tables.
Make the process start by choosing dbo.GetPeople dbo.Person *; End; Start the selection from dbo.Car as the process creates dbo.GetCars; End; - It gives the same result as before the process dbo.GetSomething exec dbo.GetPeople begin as; Exec dbo.GetCars; End;
dataset _ds = new dataset (); Datatale _ DTEMP employee = new datatelle (); _dtEmployee = _dsTables ["Employee"];
or
_dtEmployee = ds.Tables [0];
Comments
Post a Comment