web.config 文件中的大括号是什么意思?
在我的项目中,连接字符串如下所示:
connectionString="服务器=localhost;数据库={DatabaseName};用户ID=sa;密码=sa"
{DatabaseName} 是什么意思? 如果我想将 DatabaseName 更改为其他数据库名称,应该在哪里进行更改?
In my project, connection string is like the following :
connectionString="Server=localhost; Database={DatabaseName}; User Id=sa; password=sa"
What does {DatabaseName} mean?
If I want to change the DatabaseName to some other database name, where should I make the change?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除花括号并输入您的数据库名称。
例如:
Remove the curly braces and put in your database name.
For example: