D
dongnan99
Unregistered / Unconfirmed
GUEST, unregistred user!
书中有一个示例是得到联接数据库的原数据的例子,但在调试运行时如下地方报错:
function CheckViews(C : _Catalog) : Boolean;
var
I : Integer;
begin
try
I := C.Views.Count; //此处报 “object or provinder is not capable of performing requested operation”
CheckViews := True;
except
CheckViews := False;
end;
end;
function CmdSupported(P : Procedure_): Boolean;
var
D :IDispatch;
begin
try
D := IDispatch(P.Get_Command) ; //此处报“不支持此接口”
CmdSupported := True;
except
CmdSupported := False;
end;
end;
另外我还发现,我联接的 ms sqlserver 数据库中的视图对象却出现在了此示例程序的tables中,却没有出现在view中。
这些问题困扰了我好久,请各位大虾帮忙!也希望hubdog大虾能尽早解决此问题,解决读者
的困扰!
function CheckViews(C : _Catalog) : Boolean;
var
I : Integer;
begin
try
I := C.Views.Count; //此处报 “object or provinder is not capable of performing requested operation”
CheckViews := True;
except
CheckViews := False;
end;
end;
function CmdSupported(P : Procedure_): Boolean;
var
D :IDispatch;
begin
try
D := IDispatch(P.Get_Command) ; //此处报“不支持此接口”
CmdSupported := True;
except
CmdSupported := False;
end;
end;
另外我还发现,我联接的 ms sqlserver 数据库中的视图对象却出现在了此示例程序的tables中,却没有出现在view中。
这些问题困扰了我好久,请各位大虾帮忙!也希望hubdog大虾能尽早解决此问题,解决读者
的困扰!