H
hi431
Unregistered / Unconfirmed
GUEST, unregistred user!
想执行下面一个查询语句:
select S.Mode,V1.Describe,S.N_Com,S.Bool_Setup from
Site_Base S,Sys_Status V1
where V1.Code = S.Mode;
我使用了AdoQuery控件来实现:
m_Sql_Site_MainTable:= 'select S.Mode,V1.Describe,'
+ ' S.N_Com,S.Bool_Setup '
+ ' from Site_Base S,Sys_Status V1 '
+ ' where V1.Code = S.Mode ';
If ADOQuery1.Active then ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Add(m_Sql_Site_MainTable);
ADOQuery1.Open;
在进行open的时候,提示“不支持此接口”?是Access不支持这样查询?
如果要实现上面两表关联查询操作,语句该怎样写或者该怎样做?
select S.Mode,V1.Describe,S.N_Com,S.Bool_Setup from
Site_Base S,Sys_Status V1
where V1.Code = S.Mode;
我使用了AdoQuery控件来实现:
m_Sql_Site_MainTable:= 'select S.Mode,V1.Describe,'
+ ' S.N_Com,S.Bool_Setup '
+ ' from Site_Base S,Sys_Status V1 '
+ ' where V1.Code = S.Mode ';
If ADOQuery1.Active then ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Add(m_Sql_Site_MainTable);
ADOQuery1.Open;
在进行open的时候,提示“不支持此接口”?是Access不支持这样查询?
如果要实现上面两表关联查询操作,语句该怎样写或者该怎样做?