Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.73K
~168 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

1 Posted Topic

Member Avatar for Gaurav arora

SqlConnection cn = new SqlConnection(); string connstr = @"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Resources\DBMYC.mdf;Integrated Security=True;User Instance=True"; SqlConnection con = new SqlConnection(connstr); //SqlCommand cmd = sqlConnection1.CreateCommand(); SqlCommand cmd = con.CreateCommand(); cmd.CommandType = CommandType.Text; //this has the option of caling a stored procedure cmd.CommandText = "THE SQL QUERY FOR THE SELECTION FROM TWO TABLES OR MORE"; …

Member Avatar for SUNFARMS
0
168

The End.