C#如何向数据库的数字或日期类型插入空值?大家帮帮忙
我备份数据库的时候往数据库里面插入空值不行,当数据库字段是文本类型的我采取插入空字符串,但是是数字和日期类型的我就没办法解决,数据库有20多字段,如果依次判断是否为空,如...
我备份数据库的时候往数据库里面插入空值不行,当数据库字段是文本类型的我采取插入空字符串,但是是数字和日期类型的我就没办法解决,数据库有20多字段,如果依次判断是否为空,如果为空不插入的话排列组合情况太多不现实,请问哪位高手可以帮我解决一下,感激不尽!
FolderBrowserDialog dialog = new FolderBrowserDialog();
dialog.Description = "请选择数据备份的文件路径";
if (dialog.ShowDialog()== DialogResult.OK)
{
foldpath = dialog.SelectedPath;
}
string destfilename=foldpath+@"\JJ.mdb";
string sourceFile=Application.StartupPath+@"\JJ.mdb";
File.Copy(sourceFile,destfilename, true);
string sbConnStr = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + destfilename;
OleDbConnection m_pOleDbConn=null;
try
{
m_pOleDbConn = new OleDbConnection(sbConnStr);
m_pOleDbConn.Open();
for (int i = 0; i < dataGridViewX1.Rows.Count-1; i++)
{
string str = string.Format("Insert into JJ(NF,QYBH,BNZSR,BNZCZ,BNSS,BNZC,YDL,YSL,YGS,BZ) values({0},'{1}',{2},{3},{4},{5},{6},{7},{8},'{9}')",
dataGridViewX1.Rows[i].Cells[0].Value, dataGridViewX1.Rows[i].Cells[1].Value, dataGridViewX1.Rows[i].Cells[2].Value, dataGridViewX1.Rows[i].Cells[3].Value, dataGridViewX1.Rows[i].Cells[4].Value,
dataGridViewX1.Rows[i].Cells[5].Value, dataGridViewX1.Rows[i].Cells[6].Value, dataGridViewX1.Rows[i].Cells[7].Value, dataGridViewX1.Rows[i].Cells[8].Value, dataGridViewX1.Rows[i].Cells[9].Value);
OleDbCommand cmd = new OleDbCommand(str, m_pOleDbConn);
cmd.ExecuteNonQuery();
}
MessageBox.Show("备份成功");
}
catch(Exception ex)
{
throw ex;
}
finally
{
m_pOleDbConn.Close();
}
//,BNZSR,BNZCZ,BNSS,BNZC,YDL,YSL,YGS,BZ都是可以为空的字段 展开
FolderBrowserDialog dialog = new FolderBrowserDialog();
dialog.Description = "请选择数据备份的文件路径";
if (dialog.ShowDialog()== DialogResult.OK)
{
foldpath = dialog.SelectedPath;
}
string destfilename=foldpath+@"\JJ.mdb";
string sourceFile=Application.StartupPath+@"\JJ.mdb";
File.Copy(sourceFile,destfilename, true);
string sbConnStr = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + destfilename;
OleDbConnection m_pOleDbConn=null;
try
{
m_pOleDbConn = new OleDbConnection(sbConnStr);
m_pOleDbConn.Open();
for (int i = 0; i < dataGridViewX1.Rows.Count-1; i++)
{
string str = string.Format("Insert into JJ(NF,QYBH,BNZSR,BNZCZ,BNSS,BNZC,YDL,YSL,YGS,BZ) values({0},'{1}',{2},{3},{4},{5},{6},{7},{8},'{9}')",
dataGridViewX1.Rows[i].Cells[0].Value, dataGridViewX1.Rows[i].Cells[1].Value, dataGridViewX1.Rows[i].Cells[2].Value, dataGridViewX1.Rows[i].Cells[3].Value, dataGridViewX1.Rows[i].Cells[4].Value,
dataGridViewX1.Rows[i].Cells[5].Value, dataGridViewX1.Rows[i].Cells[6].Value, dataGridViewX1.Rows[i].Cells[7].Value, dataGridViewX1.Rows[i].Cells[8].Value, dataGridViewX1.Rows[i].Cells[9].Value);
OleDbCommand cmd = new OleDbCommand(str, m_pOleDbConn);
cmd.ExecuteNonQuery();
}
MessageBox.Show("备份成功");
}
catch(Exception ex)
{
throw ex;
}
finally
{
m_pOleDbConn.Close();
}
//,BNZSR,BNZCZ,BNSS,BNZC,YDL,YSL,YGS,BZ都是可以为空的字段 展开
1个回答
TableDI
2024-07-18 广告
2024-07-18 广告
在上海悉息信息科技有限公司,我们深知Excel在数据处理中的重要作用。在Excel中引用不同工作表(sheet)的数据是常见的操作,这有助于整合和分析跨多个工作表的信息。通过在工作表名称前加上感叹号“!”,您可以轻松地引用其他工作表中的数据...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询