用delphi6的ADOConnection通过myoledb如何联接mysql的数据库?
myoledb我已安装,在本机能正确联接上MYSQL,但在局域网中的其他机器上联接不上,请问如何解决??
不想用ODBC!!!
代码如下:
procedure TFrmtestimg.ToolButton3Click(Sender: TObject);
begin
  ADOConnection1.Connected:=false;
  ADOConnection1.ConnectionString:='Provider=MySqlProv;Data Source=imgtest;Integrated Security="";Password="";User ID=root;Location=192.168.1.14;Extended Properties=""';
  try
    ADOConnection1.Connected:=true;
  except
    application.MessageBox('联接数据失败!','程序提示',mb_ok or mb_iconinformation);
    exit;
  end;
  ADOQuery1.Open;
end;