主题:关于写入数据库的语句 SQl Servel
SQL Server数据库
我想把 一个EMP_ID为 2 的人的 5 个成绩通过按ok键写入到score表里面的SCOR_1到SCOR_5 请问怎么写代码?
void CPpgl::OnOK()
{
double s1,s2,s3,s4,s5;
CString str1,str2,str3,str4,str5,str6;
m_str21.GetWindowText(str1);
m_str22.GetWindowText(str2);
m_str23.GetWindowText(str3);
m_str24.GetWindowText(str4);
m_str25.GetWindowText(str5);
s1 = atof(str1);
s2 = atof(str2);
s3 = atof(str3);
s4 = atof(str4);
s5 = atof(str5);
//加数据库语句(这里怎么写?)
CDialog::OnOK();
}
我想把 一个EMP_ID为 2 的人的 5 个成绩通过按ok键写入到score表里面的SCOR_1到SCOR_5 请问怎么写代码?
void CPpgl::OnOK()
{
double s1,s2,s3,s4,s5;
CString str1,str2,str3,str4,str5,str6;
m_str21.GetWindowText(str1);
m_str22.GetWindowText(str2);
m_str23.GetWindowText(str3);
m_str24.GetWindowText(str4);
m_str25.GetWindowText(str5);
s1 = atof(str1);
s2 = atof(str2);
s3 = atof(str3);
s4 = atof(str4);
s5 = atof(str5);
//加数据库语句(这里怎么写?)
CDialog::OnOK();
}