char Zong[200]={"Provider=OraOLEDB.Oracle.1;Password="};
GetDlgItem(IDC_EDIT1)->GetWindowText(Name_DB);
GetDlgItem(IDC_EDIT2)->GetWindowText(Name);
GetDlgItem(IDC_EDIT3)->GetWindowText(Password);
strcat(Zong,Password);
strcat(Zong,";Persist Security Info=True;User ID=");
strcat(Zong,Name);
strcat(Zong,";Data Source=");
strcat(Zong,Name_DB);