以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- Framework 数据提供程序错误 12。 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=129391) |
-- 作者:zhy400137 -- 发布时间:2018/12/27 17:02:00 -- Framework 数据提供程序错误 12。 Dim dr As DataRow = e.DataRow dr("填写用户") = _UserID dr("填写部门") = _UserGroup Dim cmd As New SQLCommand Dim dt As DataTable Dim dr1 As DataRow cmd.ConnectionName = DataSource cmd.CommandText = "SELE CT di stinct 区域名称,地区名称,门店名称 From {组织架构} where 门店名称=\'" & _UserName & "\'" dt = cmd.ExecuteReader() If dt.DataRows.count>0 Then dr1 = dt.DataRows(0) End If If dr1 IsNot Nothing Then dr("区域名称") = dr1("区域名称") dr("地区名称") = dr1("地区名称") dr("门店名称") = dr1("门店名称") End If
|
-- 作者:zhy400137 -- 发布时间:2018/12/27 17:02:00 -- 上面这个代码出现 Framework 数据提供程序错误 12 请教是为啥? |
-- 作者:有点甜 -- 发布时间:2018/12/27 17:24:00 -- 重新设置一下数据源
http://www.foxtable.com/webhelp/scr/2310.htm
http://www.foxtable.com/webhelp/scr/1809.htm
|