我的代码在 vb.net.in 后端使用 mysql。mysql 表包含高达 25crores 的数据。我想将数据从表移动到数据集中。表在 varchar 数据类型中包含作为电话号码的列。将整个数据移动到数据集中。
错误
出现连接超时过期等错误。然后我在代码中添加以下行
code
-----
mycommand1 = New MySqlCommand("select fld_phonenumber from tbl_dndno ", myconnection1)
ada = New MySqlDataAdapter(mycommand1)
ada.SelectCommand.CommandTimeout = 0 ' the code to increase the command timeout for dataadapter.
ada.Fill(ds1)
myconnection1.Close()
现在无法查看数据集中的值。代码继续运行。没有显示任何结果或错误。请帮我解决这个问题?我是 vb.net 的新手