如果文本框值为空,则将Null发送到oracle

时间:2013-06-27 00:56:31

标签: vb.net oracle textbox null

如果没有输入值,我需要从文本框中向oracle发送NULL。

我喜欢30个文本框。我不能对每个文本框使用cmd.Parameters.Add语句。

请咨询一些代码。我正在使用Web服务与DB进行通信。

先谢谢

1 个答案:

答案 0 :(得分:0)

如果没有对所有文本框执行事件,请立即检查所有文本框是否为空。 This is the link

Dim emptyTextBoxes =
    From txt In Me.Controls.OfType(Of TextBox)()
    Where txt.Text.Length = 0
    Select txt.Name
If emptyTextBoxes.Any Then
    MessageBox.Show(String.Format("Please fill following textboxes: {0}",
                    String.Join(",", emptyTextBoxes)))
End If