今天在运行Quartz的时候突然提示SQL Server不支持关键字:localhost\sqlexpress,啊看看数据库配置没毛病啊.结果再仔细一看<add name="connStr" connectionString="localhost\sqlexpress;uid=sa;pwd=123;database=db123;" />,少了Server=,好低级的错误,
完整的配置链接串应该是:<add name="connStr" connectionString="server=localhost\sqlexpress;uid=sa;pwd=123;database=db123;" />
遇到好几回说sql不支持关键字xxx,那肯定是配置链接串某个地方写错了,认真检查一下吧.
以上就是【C# SQL Server不支持关键字:localhost\sqlexpress】的全部内容了,欢迎留言评论进行交流!