Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共2 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:对于外部数据表的统计

1楼
hejfen 发表于:2009/6/19 15:54:00
 

Dim doc As New PrintDoc
Dim
rt As New prt.RenderTable
Dim
cmd As New SQLCommand '定义一个SQL命令
Dim
dt As DataTable '定义一个数据表变量
Dim
Count As Integer = 0
cmd.CommandText =
"Select 产品,Count(日期) As 订单数,Sum(数量) As 数量,Sum(金额) As 金额 From {订单} Group By 产品"
dt = cmd.ExecuteReader()
'生成一个临时表
For
Each Col AS DataCol In Dt.DataCols
    rt.Cells(
0,Count).Text = Col.Name
    For
r As integer = 0 To dt.DataRows.Count - 1
        rt.Cells(r +
1,Count).Text = dt.DataRows(r)(Col.Name)
    Next

    Count = Count +
1
Next

rt.Style.Gridlines.All = New prt.Linedef(Color.Gray)
'灰色网格线
rt.CellStyle.Spacing.All =
1 '内容距离网格线1毫米
rt.Rows(
0).Style.TextAlignHorz = prt.AlignHorzEnum.Center '第一行内容水平居中

doc.Body.Children.Add(rt)
doc.Preview()

以上代码是否适用于外部数据表啊,我执行时,提示未将对象引用到实例。。。

2楼
狐狸爸爸 发表于:2009/6/19 16:00:00
SQLCommand
这个类用于执行SQL命令。

属性:
CommandText
字符型,用于设置SQL命令。

ConnectionName
字符型,用于指定数据源名称,如果省略,则使用内部数据源。
共2 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02344 s, 2 queries.