我在Transaction.cs中有这段代码
using (TransactionScope scope = new TransactionScope())
{
// Setup nhibernate configuration
Configuration config = new Configuration();
config.SetProperty("hibernate.connection.connection_string", GlobalVar.TRUECONNSTRING);
config.SetProperty("hibernate.command_timeout", "3600");
config.AddAssembly(typeof(ProductionMovein).Assembly);
// Setup nhibernate session
ISessionFactory factory = config.BuildSessionFactory();
ISession session = factory.OpenSession();
ITransaction transaction = session.BeginTransaction();
//Recalculate Number
PairData pairCabang = (PairData)comboCabang.SelectedItem;
textNo.Text = FormFunction.getNumber(2, pairCabang.key, dtpTanggal.Value);
// Insert data
try
{
//ProductionMoveIn
ProductionMovein productionMoveIn = new ProductionMovein();
productionMoveIn.Nomor = textNo.Text;
session.Save(productionMoveIn);
transaction.Commit();
session.Close();
}
catch (Exception ex)
{
transaction.Rollback();
session.Close();
MessageBox.Show(ex.InnerException.Message);
return 1;
}
scope.Complete();
}
错误从
开始textNo.Text = FormFunction.getNumber(2,pairCabang.key, dtpTanggal.Value);
我在Formfunction.cs中有这段代码
public static string getNumber(int formID, int cabangID, DateTime date)
{
string formNumber = "";
string strQuery = "";
formNumber += formNames[formID, 0] + "/" + + date.ToString("yy") + date.ToString("MM") + "/";
// Setup nhibernate configuration
NHibernate.Cfg.Configuration config = new NHibernate.Cfg.Configuration();
config.SetProperty("hibernate.connection.connection_string", GlobalVar.TRUECONNSTRING);
config.SetProperty("hibernate.command_timeout", "3600");
config.AddAssembly(typeof(Login).Assembly);
//// Setup nhibernate session
ISessionFactory factory = config.BuildSessionFactory();
ISession session = factory.OpenSession();
strQuery = "SELECT MAX(REVERSE(SUBSTRING(REVERSE(a.Nomor), 1, 5))) as 'latest' FROM " + formNames[formID, 1] +
" a WHERE a.cabang = " + cabangID +
" AND YEAR(a.tanggal) = '" + date.ToString("yyyy");
Object result = session.CreateSQLQuery(strQuery)
.AddScalar("latest", NHibernateUtil.Int32)
.UniqueResult();
session.Close();
int nRow;
if (result == null)
nRow = 0;
else
nRow = (int)result;
formNumber += (nRow + 1).ToString("d5");
return formNumber;
}
我试图将服务器更改为10.10.7.10(我的IP)并且它可以工作。但是,当我更改为其他IP时,它无法打开连接。 我试图打开我的计算机上的msdtc和我尝试连接的其他服务器,但仍然得到相同的错误。
有人可以帮我解决这个错误吗?
答案 0 :(得分:2)
您使用的是哪个数据库? (我假设是MS SQL) 你能发布例外细节了吗?
这是一种方法。
using (TransactionScope)
/ scope.Complete
并尝试连接到远程数据库 - 即确保您的
本地Sql客户端配置为TCP / IP,远程服务器允许
远程TCP / IP连接(通常是端口1433),以及您的登录
凭据和访问权限都是正确的。确保在PC和服务器上都配置了DTC 允许远程连接等 - 。
您还需要解决防火墙问题 DTC firewall requirements?
修改强>
默认情况下,SQL Express不对远程连接开放 - 在远程服务器上,您需要在SQL Configuration Manager上启用TCP / IP,打开1433/1434的防火墙,并且如@Özgür提到的那样,确保浏览器服务正在运行的SQL(或更改您的实例名称,或更改您的连接字符串以使用ip,port)。更多相关信息:http://www.sevenforums.com/system-security/58817-remote-access-sql-server-express-2008-windows-7-a.html