Ejemplo n.º 1
0
 /// <summary>
 /// Send the Command to the database server represented by hdl,
 /// reusing the handle from a previous query. If Command is zero it
 /// takes the last query string kept around. The command response is
 /// buffered for consumption, e.g. mapi_fetch_row().
 /// </summary>
 /// <param name="hdl"></param>
 /// <param name="command"></param>
 /// <returns></returns>
 public static MapiMsg MapiQueryHandle(MapiHdl hdl, string command)
 {
     return(new MapiMsg(CMapiLib.mapi_query_handle(hdl.Ptr, command)));
 }