C Croco Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-31 #2 用 Session.GetTableNames,其范例如下: MyStringList := TStringList.Create; try Session.GetTableNames('DBDEMOS', '*.db',False, False, MyStringList); { Add the table names to a list box } ListBox1.Items = MyStringList; finally MyStringList.Free; end;
用 Session.GetTableNames,其范例如下: MyStringList := TStringList.Create; try Session.GetTableNames('DBDEMOS', '*.db',False, False, MyStringList); { Add the table names to a list box } ListBox1.Items = MyStringList; finally MyStringList.Free; end;
孔 孔枫 Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-01 #8 问题解决。 因为是SqlServe,所以Croco的例子中*.db不对,改成dbo.W3*就对了。 谢了!