首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > ADO.NET实现SugarCRM。

ADO.NET实现SugarCRM。

  • 资源大小:42.33 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: sugarcrm 实现 ADONet

资 源 简 介

This library povides set of classes in the namespace of "System.Data.SugarClient", which enables you to access the data inside your SugarCRM instance. For example SugarConnection implements IDbConnection interface. It provides connection to the Sugar Instance over SOAP. sample code: ``` using(IDbConnection con = new SugarConnection("Data Source=http://host/sugarcrm/;User ID=admin;Password=foo")){ con.Open(); // this performs logging in to sugar. IDbCommand cmd = con.CreateCommand(); cmd.CommandText = "SELECT * FROM Contacts"; // This statement will fetch all records from Contacts module. IDataReader reader = cmd.ExecuteReader(); // process data here con.Close(); // logout } ```

文 件 列 表

SugarClient.dll
VIP VIP
0.170003s