ADO的连接串为:
     conn_dbf.ConnectionString:='Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=dBase 5.0;Persist Security Info=False;Data Source=D:\qstest\'
用ADOCommand进行创建表
 ADOCommand.CommandText:='create table test(a1 char(10),a2 int(4,2),money(8,2),float(5,2))';
 ADOCommand.Execute();
报错:CREAET TABLE 语句中的语法错误。
该如何解决啊?????
如果不对数值型的字段进行长度和精度的设置,就不报错。
高手救命啊