gpt4 book ai didi

sql-server - 为 ASP.NET-MVC 应用程序确定用于 Web 发布的正确连接字符串

转载 作者:太空狗 更新时间:2023-10-30 01:48:22 25 4
gpt4 key购买 nike

在本地机器上开发 ASP.NET-MVC 应用程序期间,我使用这个 connectionString 没有任何问题:

<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\AppDb.mdf;Initial Catalog=AppDb;Integrated Security=True;MultipleActiveResultSets=True" providerName="System.Data.SqlClient" />
</connectionStrings>

在托管服务数据库控制面板中,我可以获取到我的 MSSQL 的连接字符串(我选择了 SQL Server 2012 数据库,但如果有帮助,我可以选择 2014)。他们说连接字符串是:

"Data Source=SQL5013.myASP.NET;Initial Catalog=DB_9B42A0_baza;User Id=DB_9B42A0_baza_admin;Password=YOUR_DB_PASSWORD;"

关于我的 MSSQL 数据库的信息:

Server name :   SQL5013
Server version : Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
May 14 2014 18:34:29
Standard Edition (64-bit) on Windows NT 6.3 (Build 9600: )
Database name:DB_9B42A0_baza
Server URL:SQL5013.myASP.NET
Login name:DB_9B42A0_baza_admin

我的应用程序是带有 Entity Framework 6 的 ASP.NET-MVC5.1。

这是我尝试过的:

尝试 1

<connectionStrings> </connectionStrings>之间添加了这个连接定义

 <add name="DefaultConnection" connectionString="Data Source=SQL5013.myASP.NET;Initial Catalog=DB_9B42A0_baza;User Id=DB_9B42A0_baza_admin;Password=12345678;" providerName="System.Data.SqlClient" />

访问我的网站时的结果:

Exception Details: System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0.

尝试 2

<add name="DefaultConnection" connectionString="Provider=sqloledb;Data Source=SQL5013,1433;Initial Catalog=DB_9B42A0_baza;User Id=DB_9B42A0_baza_admin;Password=12345678;" providerName="System.Data.SqlClient" />

访问我的网站时的结果:

Exception Details: System.ArgumentException: Keyword not supported: 'provider'.

尝试 3

<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\AppDb.mdf;Initial Catalog=AppDb;Integrated Security=True;MultipleActiveResultSets=True" providerName="System.Data.SqlClient" />

加上 WebApplication2(这是我的 ASP.NET-MVC 应用程序的名称)属性:

enter image description here

访问我的网站时的结果:

Exception Details: System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0.

尝试 4(基于来自 http://www.connectionstrings.com/sqlconnection/的第一个示例)

<add name="DefaultConnection" connectionString="Server=SQL5013.myASP.NET;Database=DB_9B42A0_baza;User Id=DB_9B42A0_baza_admin;Password=12345678;" providerName="System.Data.SqlClient" />

访问我的网站时的结果:

Exception Details: System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0.

总结:

在过去的 3 天里,我尝试了很多东西来让它工作,但我不记得了。我阅读了很多 MSDN 文章,但没有运气。如果我可以提供有关数据库或应用程序的更多信息,请告知我会尽快更新帖子。

问题:

发布后在<connectionStrings> </connectionStrings> seciton中应该写什么才能使数据库连接正常?


附加信息:

我完整的 Web.config 文件是:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\AppDb.mdf;Initial Catalog=AppDb;Integrated Security=True;MultipleActiveResultSets=True" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<customErrors mode="Off"/>
</system.web>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
</system.web>
<system.webServer>
<modules>
<remove name="FormsAuthenticationModule" />
</modules>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-5.1.0.0" newVersion="5.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.10.0" newVersion="4.0.10.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>

更新 -> 负责数据库的代码

Application_Start 中的 Global.asax

namespace WebApplication2 {
public class MvcApplication : System.Web.HttpApplication {
protected void Application_Start() {
System.Diagnostics.Debug.WriteLine("Application_Start");
Database.SetInitializer(new MigrateDatabaseToLatestVersion<ApplicationDbContext, Configuration>());
new ApplicationDbContext().Database.Initialize(true);
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
}
}

Configuration/Migrations.cs 文件:

namespace WebApplication2.Migrations {
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using System;
using System.Collections.Generic;
using System.Data.Entity.Migrations;
using System.Data.Entity.Validation;
using System.Linq;
using WebApplication2.Models;

internal sealed class Configuration : DbMigrationsConfiguration<WebApplication2.Models.ApplicationDbContext> {
public Configuration() {
AutomaticMigrationsEnabled = true;
AutomaticMigrationDataLossAllowed = true;
ContextKey = "WebApplication2.Models.ApplicationDbContext";
}

protected override void Seed(WebApplication2.Models.ApplicationDbContext context) {
System.Diagnostics.Debug.WriteLine("SEED STARTED");

}
}
}

Models/IdentityModels.cs 我的 DbContext 在哪里定义:

using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
using System;
using System.Collections.Generic;

namespace WebApplication2.Models {
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
public class ApplicationUser : IdentityUser {

USER PROPERTIES HERE

public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager) {
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}

public class ApplicationDbContext : IdentityDbContext<ApplicationUser> {


public ApplicationDbContext()
: base("DefaultConnection", throwIfV1Schema: false) {
System.Diagnostics.Debug.WriteLine("CONSTRUCTOR");
Configuration.LazyLoadingEnabled = true;
Configuration.ProxyCreationEnabled = true;
}

DBSETS HERE

protected override void OnModelCreating(DbModelBuilder modelBuilder) {
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<Person>().HasMany(p => p.Answers).WithMany(a => a.Persons);
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}

public static ApplicationDbContext Create() {

return new ApplicationDbContext();

}


}
}

脚注

我没有资格在提出问题后 2 天之前开始悬赏,但如果这有帮助,我会为工作连接字符串提供 500 点声望(我会在悬赏可能时奖励它)。这对我来说太难了,我在 3 天内尝试了无数种方法。

最佳答案

如错误所述,尝试 2 中的连接字符串不正确。尝试 3 中的连接字符串指向本地。然而,尝试 1 和 4 看起来完全有效。

您是否尝试过使用右键单击项目-->Publish 而不是转到project properties-->Package/Publish SQL 来发布网站?

请注意,在使用 Project properties-->Package/Publish SQL 时,它不会更新目标上的 web.config,并且需要进行 web 配置转换。如果您没有使用转换,连接字符串将指向您在本地的那个。

使用右键单击项目-->Publish,您可以提供目标连接字符串,对其进行测试,然后甚至可以在部署期间更新web.config .确保选中 Use this connection string at runtime (update destination web.config)

enter image description here

更新:

关于您的问题 - “为什么我之前的尝试失败了?

如上所述,尝试 1 和 4 看起来您已经获得了有效的连接字符串,但仍然出现错误

System.ArgumentException:初始化字符串的格式不符合从索引 0 开始的规范

出现此错误的原因可能有多种 - 正如所问的类似问题一样 herehere有不同的解决方案。但很可能是连接字符串不正确。

确保的唯一方法是,在部署/发布到托管服务后检查 web.config 中的内容。如果您确定部署后的 web.config 具有与尝试 1 和 4 相同的连接字符串,那么这确实很奇怪。

此外,在尝试 3 中,目标数据库的连接字符串 看起来与您的其他连接字符串不同,是否经过测试?这一点以及我上面提到的 web 发布方法而不是使用 Package/Publish SQL 的事实让我认为在您之前的尝试中可能没有部署数据库。为什么不重复相同的步骤,而是将其部署到您访问 web.config 的位置,并检查数据库是否部署成功?

现在,关于 - “在我的情况下,在不向“发布 Web 设置”选项卡添加任何内容的情况下,在服务器上发布 Web 应用程序后,部分或 Web.config 应该如何使数据库正常工作?

通过在 Publish Web 工具的 Settings 选项卡的 Database 部分中不设置任何内容 - 您的数据库将不会被部署。考虑到您正在使用迁移,我不确定您想这样做。

但是,如果您出于某种原因计划单独部署数据库 - 那么您需要对 web.config 应用转换,以使其在发布时自动更改连接字符串。

有关如何进行 web.config 转换的更多信息,请参见 here .

以下页面是了解网络和数据库发布的好地方

  • MSDN - 涵盖完整的部署概述,包括代码优先迁移
  • ASP.NET site - 专注于托管服务部署和部署到不同的环境

希望这对您有所帮助。

关于sql-server - 为 ASP.NET-MVC 应用程序确定用于 Web 发布的正确连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26256988/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com