国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

用C#創建COM對象

2024-07-21 02:20:07
字體:
來源:轉載
供稿:網友
在本篇文章中,我們將討論下面的問題:
  ·使用c#創建一個簡單的com對象(使用com的interop特性)。
  ·從vc++客戶端軟件中訪問com。客戶端軟件使用了typelibrary(.tlb文件)。
  為了簡單和方便開發人員使用、測試起見,我們使用了sqlserver數據庫軟件的缺省安裝中的northwind數據庫。
  ·修改com對象中sqlserver的名字,與sqlserver連接。
  ·我們已經創建了連接數據庫用的分別為scott、tiger的用戶名和口令,我們可以使用它或者其他現有的用戶名和口令。
  第一部分:用c#創建簡單的com對象
  com對象是classlibrary類,它生成dll文件。要在vs開發環境中創建一個簡單的com對象,我們可以依次選擇“文件”->;“新創建”->;“工程”->;“visualc#工程”->;“類庫”,然后創建一個名字為database_comobject的工程。
  需要注意的是:在com中調用vc#對象需要下面的條件:
  ·類必須是public性質。
  ·特性、方法和事件必須是public性質的。
  ·特性和方法必須在類接口中定義。
  ·事件必須在事件接口中定義。
  不是在這些接口中定義的public性質的類成員不能被com訪問,但它們可以被其他的.net framework對象訪問。要讓com能夠訪問特性和方法,我們必須在類接口中定義它們,使它們具有dispid屬性,并在類中實現這些特性和方法。這些成員定義時的順序也就是它們在com中順序。要讓com訪問類中的事件,必須在事件接口中定義這些事件,并賦予它們dispid屬性。事件接口不應當由類完成,類只實現類接口(它可以實現不止一個接口,但第一個接口是缺省接口),應當在缺省接口中實現需要讓com訪問的方法和特性,方法和特性必須被標識為public性質,并符合在類接口中的定義。需要讓com訪問的事件也在缺省的類接口中完成,它們也必須被標識為public性質,并符合事件接口中的定義。
  在接口名字之前,每個接口需要一個guid特性。要生成變個唯一的guid,需要運行guidgen.exe工具軟件,并選擇“注冊表格式” 下面是一個類界面:


[guid(";694c1820-04b6-4988-928f-fd858b95c880";)]
public interface dbcom_interface
{
[dispid(1)]
void init(string userid , string password);
[dispid(2)]
bool executeselectcommand(string selcommand);
[dispid(3)]
bool nextrow();
[dispid(4)]
void executenonselectcommand(string inscommand);
[dispid(5)]
string getcolumndata(int pos);
}

  com事件接口: // 事件接口database_comobjectevents
[guid(";47c976e0-c208-4740-ac42-41212d3c34f0";),
interfacetype(cominterfacetype.interfaceisidispatch)]
public interface dbcom_events
{
}

  下面是實際的類定義:
[guid(";9e5e5fb2-219d-4ee7-ab27-e4dbed8e123e";),
classinterface(classinterfacetype.none),
comsourceinterfaces(typeof(dbcom_events))]
public class dbcom_class : dbcom_interface
{

  需要注意的是,在類的前面,需要設置下面的特性:
classinterface(classinterfacetype.none),
comsourceinterfaces(typeof(dbcom_events))]

  classinterfacetype.none表示沒有為該類生成類接口,如果沒有明確地實現接口,類只能通過idispatch提供后期綁定訪問。用戶希望通過明確地由類實現的接口使外部對象能夠訪問類的功能,這也是推薦的classinterfaceattribute的設置。

  comsourceinterfaces(typeof(dbcom_events))]確定許多作為com事件向外部對象提供的接口。在本文的例子中,我們不對外部對象開放任何事件。

  下面是com對象完整的源代碼:
using system;
using system.runtime.interopservices;
using system.io;
using system.text;
using system.data.sqlclient;
using system.windows.forms ;

namespace database_comobject
{
[guid(";694c1820-04b6-4988-928f-fd858b95c880";)]
public interface dbcom_interface
{
[dispid(1)]
void init(string userid , string password);
[dispid(2)]
bool executeselectcommand(string selcommand);
[dispid(3)]
bool nextrow();
[dispid(4)]
void executenonselectcommand(string inscommand);
[dispid(5)]
string getcolumndata(int pos);
}

// 事件接口database_comobjectevents
[guid(";47c976e0-c208-4740-ac42-41212d3c34f0";),
interfacetype(cominterfacetype.interfaceisidispatch)]
public interface dbcom_events
{
}


[guid(";9e5e5fb2-219d-4ee7-ab27-e4dbed8e123e";),
classinterface(classinterfacetype.none),
comsourceinterfaces(typeof(dbcom_events))]
public class dbcom_class : dbcom_interface
{
private sqlconnection myconnection = null ;
sqldatareader myreader = null ;

public dbcom_class()
{
}

public void init(string userid , string password)
{
try
{
string myconnectstring = ";user id=";+userid+";;password=";+password+
";;database=northwind;server=skywalker;connect timeout=30";;
myconnection = new sqlconnection(myconnectstring);
myconnection.open();
messagebox.show(";connected";);
}
catch(exception e)
{
messagebox.show(e.message);
}
}

public bool executeselectcommand(string selcommand)
{
if ( myreader != null )
myreader.close() ;

sqlcommand mycommand = new sqlcommand(selcommand);
mycommand.connection = myconnection;
mycommand.executenonquery();
myreader = mycommand.executereader();
return true ;
}

public bool nextrow()
{
if ( ! myreader.read() )
{
myreader.close();
return false ;
}
return true ;
}

public string getcolumndata(int pos)
{
object obj = myreader.getvalue(pos);
if ( obj == null ) return ";"; ;
return obj.tostring() ;
}

public void executenonselectcommand(string inscommand)
{
sqlcommand mycommand = new sqlcommand(inscommand , myconnection);
int retrows = mycommand.executenonquery();
}

}
}

  在創建com對象前,我們必須向com interop注冊該對象。右擊方案管理器中的工程名字,點擊快捷菜單上的“屬性”選項,然后再點擊“配置”->;“創建”,擴展output小節,將register for com interop選項的值設置為true。這樣,一個com對象就能夠與可管理性應用程序進行交互。

  為了使com對象能夠被外部對象調用,類庫組合必須有一個強名字。創建強名字需要用到sn.exe名字: sn -k database_com_key.snk
打開assemblyinfo.cs,并修改下面一行的內容:
[assembly: assemblykeyfile(";database_com_key.snk";)]

  創建對象。創建對象會生成一個可以被導入到可管理性或非可管理性代碼中的類庫。
  第二部分:使用visual c++創建訪問com對象的客戶端軟件
  ·使用vc++開發環境創建一個簡單的工程。
  ·使用#import directive導入類型庫。
  ·在界面中創建一個smart pointer,從接口中執行com類提供的功能。確保在應用程序加載時添加coinitialize()調用: coinitialize(null);

database_comobject::dbcom_interfaceptr p(__uuidof(database_comobject::dbcom_class));
db_com_ptr = p ;
db_com_ptr->;init(";scott"; , ";tiger";);

  下面的代碼對customers數據庫表執行一個sql命令,返回給定id的客戶的信息:
char cmd[1024];
sprintf(cmd , ";select companyname , contactname ,
contacttitle , address from customers where customerid = '%s'"; , m_id );
const char *p ;

bool ret = db_com_ptr->;executeselectcommand(cmd);

if ( ! db_com_ptr->;nextrow() ) return ;

_bstr_t mdata = db_com_ptr->;getcolumndata(3);
p = mdata ;
m_address = (cstring)p ;



發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 东城区| 丰原市| 唐河县| 静宁县| 平定县| 彭水| 公安县| 浮山县| 洛扎县| 赤城县| 海林市| 正蓝旗| 阿巴嘎旗| 应城市| 始兴县| 偃师市| 黄陵县| 连江县| 陈巴尔虎旗| 丹寨县| 嘉鱼县| 桃江县| 南皮县| 桂林市| 清涧县| 平武县| 得荣县| 自贡市| 东莞市| 舞阳县| 牡丹江市| 高唐县| 逊克县| 定兴县| 秦安县| 襄樊市| 武穴市| 花垣县| 永定县| 黄石市| 绥化市|