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.55K
~159 People Reached
About Me
Love programming and most importantly, animals.
Favorite Forums
1 Posted Topic
Re: 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"; … |
The End.