F
FlyDayDream
Unregistered / Unconfirmed
GUEST, unregistred user!
sVfpStr4= 'Provider=Microsoft.Jet.OLEDB.4.0;Data Source="%s";Extended Properties=dbase 5.0;';
adoconnection.connstring=format(svfpstr4,['c:/']);
adoconnection.execute('create table xtf (F01 numeric(5,1))') 执行成功,就是表结构不是n(5,1) 而是 n(16,1)
而'create table xtf (F01 numeric(5,1))' 在vfp 中执行确实 结果是 n(5,1)
纳闷??
str:='F01 numeric(5,1)';
//str:='F01 N(5,1)'; / /执行时提示非法表定义
//str:='F01 Number(5,1)';/ /执行时提示非法表定义
//str:='F01 float(5,1)'; / /执行时提示非法表定义
崩溃!
adoconnection.connstring=format(svfpstr4,['c:/']);
adoconnection.execute('create table xtf (F01 numeric(5,1))') 执行成功,就是表结构不是n(5,1) 而是 n(16,1)
而'create table xtf (F01 numeric(5,1))' 在vfp 中执行确实 结果是 n(5,1)
纳闷??
str:='F01 numeric(5,1)';
//str:='F01 N(5,1)'; / /执行时提示非法表定义
//str:='F01 Number(5,1)';/ /执行时提示非法表定义
//str:='F01 float(5,1)'; / /执行时提示非法表定义
崩溃!