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.65K
1 Posted Topic
SqlConnection connect; string con1 = @"Data Source=" + newForm.ServerName + ";Initial Catalog=" + listBox2.SelectedItem + ";Persist Security Info=True;User ID=" + newForm.ID + ";Password=" + newForm.Pass; connect = new SqlConnection(con1); connect.Open(); SqlCommand command; command = new SqlCommand(@"backup database " + listBox2.SelectedItem + " to disk ='" + path + "\\" + …
The End.
Ivan_86