以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]关于SQLCommand 的问题 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=46998) |
-- 作者:wldhj -- 发布时间:2014/3/3 10:13:00 -- [求助]关于SQLCommand 的问题 用 SQLCommand select 数据后怎么自动生成一个表将数据存储到里面。就像查询管理器一样 |
-- 作者:Bin -- 发布时间:2014/3/3 10:15:00 -- 你可以使用FILL http://www.foxtable.com/help/topics/1930.htm |
-- 作者:ahbzczy -- 发布时间:2014/3/3 10:16:00 -- Dim cmd As New SQLCommand Dim dt As DataTable Dim cmb As WinForm.ComboBox cmd.CommandText = "SELECT DISTINCT 客户 From {订单}" dt = cmd.ExecuteReader() |
-- 作者:狐狸爸爸 -- 发布时间:2014/3/3 10:48:00 -- 还有: http://www.foxtable.com/help/topics/0695.htm http://www.foxtable.com/help/topics/1279.htm http://www.foxtable.com/help/topics/2335.htm
|