X xiaocai Unregistered / Unconfirmed GUEST, unregistred user! 2002-02-12 #1 请问,我要建一个46X24的二维表,每个数据都不一样,在ACCESS里如何建库呢?(ACCESS 只能有最多255行)在DELPHI里又怎么才能用DBGRID显示出来呢?谢谢大家!
L lvxq Unregistered / Unconfirmed GUEST, unregistred user! 2002-02-13 #2 奇怪??关255怎么了??你是不是想岔了??? 一个46*24的书组只有这么多个元素,显示??? 简单的方法是创建一个24个字段的表,然后把按顺序添加46条纪录,ok Field1 Field2 Field3 ...................Field24 Record1: a[1][1] a[1][2] a[1][3] a[1][24] ....................................... record 46:a[46][1] a[46][2] a[46][3] ................a[46][24].
奇怪??关255怎么了??你是不是想岔了??? 一个46*24的书组只有这么多个元素,显示??? 简单的方法是创建一个24个字段的表,然后把按顺序添加46条纪录,ok Field1 Field2 Field3 ...................Field24 Record1: a[1][1] a[1][2] a[1][3] a[1][24] ....................................... record 46:a[46][1] a[46][2] a[46][3] ................a[46][24].
X xiaocai Unregistered / Unconfirmed GUEST, unregistred user! 2002-02-14 #4 那如果这样建库的话,如何在同一个表格内将这46条记录显示出来,而不会显示出不满足 我的查询条件的记录呢?比如说每天一个记录,我查询或是修改起来怎么让46条记录为一个 查询单位呢?谢谢楼上的大虾!
P Pipi. Unregistered / Unconfirmed GUEST, unregistred user! 2002-02-14 #5 再加一列啊:row,表示它是第几行啊 再加一列啊:日期,表示它是哪天的啊 日期 row Field1 Field2 Field3 ...................Field24 Record1: 2000-1-1 1 a[1][1] a[1][2] a[1][3] a[1][24] ....................................... record 46: 2000-1-1 46 a[46][1] a[46][2] a[46][3] ................a[46][24].
再加一列啊:row,表示它是第几行啊 再加一列啊:日期,表示它是哪天的啊 日期 row Field1 Field2 Field3 ...................Field24 Record1: 2000-1-1 1 a[1][1] a[1][2] a[1][3] a[1][24] ....................................... record 46: 2000-1-1 46 a[46][1] a[46][2] a[46][3] ................a[46][24].
X xiaocai Unregistered / Unconfirmed GUEST, unregistred user! 2002-02-15 #6 谢谢谢谢!再无耻的问一个问题行吗? 怎么样才能将其中的一条记录(比如说2000-01-01),这46条怎么才能存储成为一个TXT 文件而且用我的程序能打开?好象有点难吧!!(大虾们千万不要留个超链接 了事,麻烦大家详细些好吗?最好不用第三方的控件!可以再加分!) :-)
谢谢谢谢!再无耻的问一个问题行吗? 怎么样才能将其中的一条记录(比如说2000-01-01),这46条怎么才能存储成为一个TXT 文件而且用我的程序能打开?好象有点难吧!!(大虾们千万不要留个超链接 了事,麻烦大家详细些好吗?最好不用第三方的控件!可以再加分!) :-)
P Pipi. Unregistered / Unconfirmed GUEST, unregistred user! 2002-02-15 #7 select * from 表 where 日期=xxxxxx order by row 那么会取出46行纪录,把这46行纪录一条一条读出数据来、写入文件不就可以了
A apple31163538 Unregistered / Unconfirmed GUEST, unregistred user! 2002-02-18 #8 You can use TBatchMove. use Tquery use Ttable Tquery is used querying from the database.And is the source of the TbatchMove. Ttable is used save the data from the TBatchMove.And is the Destination of the TBatchMove Then Actiovfdasfdsa
You can use TBatchMove. use Tquery use Ttable Tquery is used querying from the database.And is the source of the TbatchMove. Ttable is used save the data from the TBatchMove.And is the Destination of the TBatchMove Then Actiovfdasfdsa