使用excel-DNA的单例模式和服务器连接

时间:2014-07-11 07:45:58

标签: c# sql-server excel-dna

我有一个SQL数据库。

然后在一个班级中我有一个ExcelFunction

[ExcelFunction(Description = "fonction de recherche")]
public static double id(string _isin)
{
   double res;
   res =DBSQL.Instance.getID(_isin);
   return res;
}

然后在另一个类中,我有我的连接和单例模式的创建(为了在多线程的情况下是安全的)。这个想法可能不太清楚,只要问我,我会尝试解释。重点是打开连接(使用单例模式),然后执行请求,然后删除单例以关闭连接。

这是我的代码:

public class DBSQL : iAccesDB1
{

    private SqlConnection MaConn = new SqlConnection("sefhgoefhouzeyf");

    private static volatile DBSQL instance;

    private static object syncRoot = new Object();

    private DBSQL() {}

    public static DBSQL Instance
    {   
        get 
        {
           if (instance == null)   
           {
               lock (syncRoot)
               {
                    if (instance == null)
                        instance = new DBSQL();
                }
            }
            return instance;
        }
    }

    public void Connection()    
    {
        MaConn.Open();
    }

    public void CloseConnection()
    {
        MaConn.Close();
    }

    public double getID(String _isin)
    {
        SqlDataReader rd;

        double res = -9999;

        SqlCommand cd = new SqlCommand("select cpn from tD where isin='" + _isin + "'", MaConn);
        try
        {
            rd = cd.ExecuteReader();
            if (rd.HasRows)
            {
                while (rd.Read())
                    res =double.Parse(rd["cpn"].ToString());
            }
        }
        catch (Exception ex)
        {
            throw new Exception("1000: " + ex.Message);
        }
        return res;
    }
}

问题是它不起作用 - 在我的Excel单元格中,我有以下内容:VALUE?

1 个答案:

答案 0 :(得分:2)

当您的Excel-DNA函数将#VALUE返回给Excel时,可能意味着存在未处理的异常。

我建议您更改顶级功能以返回“'”对象'如果存在异常,则返回错误字符串,如下所示:

[ExcelFunction(Description = "fonction de recherche")]
public static object id(string _isin)
{ 
    try 
    {
        double res;
        res = DBSQL.Instance.getID(_isin);
        return res; 
    }
    catch (Exception ex)
    {
        return "!!! ERROR: " + ex.ToString();
    }
}