0
サンドボックスWebパーツでデータベース接続を行いたい。私はクエリを使用しているとき、次のコードは正常に動作します。誰も私にストアドプロシージャ&のパラメータを渡す方法を教えてもらえますか?また、Webサービスを操作する方法は?sharepoint2010:サンドボックスWebパーツのデータベース接続
public static DataSet ChkConn(string strval)
{
public static DataSet ds;
public static string assemblyName = "FullTrustProxy, Version=1.0.0.0, Culture=Neutral, PublicKeyToken=75e25e9dc5ff21aa";
public static string typeName = "DBFullTrust.FullTrustProxy.SQLFullTrustProxy";
try
{
SQLProxyArgs proxyArgs = new SQLProxyArgs();
proxyArgs.ConnectionString = "Persist Security Info=False;User ID=sa;Password=;Initial Catalog=Cat;Data Source=ABC";
if (strval == "B")
proxyArgs.Command = "select * from table1";
else
proxyArgs.Command = "select * from table2";
proxyArgs.returnType = typeof(DataSet);
return ds = (DataSet)SPUtility.ExecuteRegisteredProxyOperation(assemblyName, typeName, proxyArgs);
}
catch
{
}
return ds;
}