如何在delphi程序中新建dbase库的索引文件?(100分)

  • 主题发起人 主题发起人 taoqg
  • 开始时间 开始时间
T

taoqg

Unregistered / Unconfirmed
GUEST, unregistred user!
如何在delphi程序中新建dbase库的索引文件?
 
Create Index
语句格式:
CREATE [UNIQUE] [ASC | DESC] INDEX index_reference ON table_reference (column_reference [,column_reference...])
Borland原话:
Use the CREATE INDEX statement to create a secondary index for an existing table. Index names may not have embedded spaces. Paradox indexes may be based on multiple columns. Due to the distinctive nature of dBASE expression indexes, only single-column indexes can be created with CREATE INDEX.
 
也可以直接用TTABLE控件的ADDINDEX方法,具体用法
看帮助。
 

谢谢各位! 我会常来.

 
后退
顶部