在哪里可以找到有关使用 MySQL 设置 ASP.NET Web 应用程序的信息?

发布于 2024-11-17 18:10:25 字数 215 浏览 0 评论 0原文

我对使用 MySQL 在 ASP.NET 中开发 Web 应用程序感兴趣,这是否很难做到/是否可以轻松地与 Visual Studio 2010 集成?我真的很喜欢将 .NET 平台用于 Web 应用程序,但我更喜欢使用 MySQL 而不是 Microsoft SQL Server。有人可以阐明/指导我找到好的链接吗?

抱歉,如果这是一个荒谬的问题,我是 Web 应用程序和 .NET 框架的新手。

I am interested in developing web applications in ASP.NET using MySQL, is this something difficult to do/does it easily integrate with Visual Studio 2010? I really like using the .NET platform for web applications but I would prefer to use MySQL over Microsoft SQL Server. Can somebody shed some light/direct me to good links?

Sorry if this is a ridiculous question, I'm new to web applications and the .NET framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水染的天色ゝ 2024-11-24 18:10:25

尝试其中一些链接来开始

将 MySQL 与 ASP 结合使用。 NET

从 ASP.NET 连接到 MySQL 数据库

将 MySQL 与 ASP.NET 结合使用

编辑 :看起来你必须这样做使用 ODBC 连接。您需要在您的 PC 上设置 ODBC 连接您部署该应用程序。这是我在连接到使用 ODBC 连接的 Informix 数据库时使用的示例。您需要首先安装 MySql 的驱动程序

Informix 数据库

<add name="odbcConnection" connectionString="Driver={IBM INFORMIX 3.82 32 BIT};uid=odbcUsername;pwd=odbcPassword;database=odbcDatabase; host=odbcHostName;srvr=odbcServerName;serv=odbcServ;pro=onsoctcp;cloc=en_US.819;dloc=en_US.819;vmb=0;condb=1;xcl=0;curb=0;scur=0;icur=0;oac=1;optofc=0;rkc=0;odtyp=0;fbs=4096;ddfp=0;dnl=0;rcwc=0" providerName="System.Data.Odbc"/>

DataAccess 方法的 Web.config 连接字符串

Dim cnStr As String = ConfigurationManager.ConnectionStrings("odbcConnection").ToString

Public Function GetTable() As Data.DataSet
    Dim ds As New Data.DataSet
    Dim sql As String = ""

        Using myConnection As OdbcConnection = New OdbcConnection(cnStr)
            Dim myCommand As New OdbcCommand()
            Dim oda As OdbcDataAdapter = New OdbcDataAdapter()
                sql = "SELECT * FROM table"

                If myConnection.State = ConnectionState.Closed Then
                    myConnection.Open()
                    myCommand = New OdbcCommand(sql, myConnection)
                    myCommand.CommandType = CommandType.Text
                    oda.SelectCommand = myCommand
                    oda.Fill(ds, "tblInfo")
                End If
        End Using
    Return ds
End Function

Try some of these links to start

Using MySQL with ASP.NET

Connect to MySQL database from ASP.NET

Using MySQL with ASP.NET

EDIT : Looks like you will have to use an ODBC connection. You'll need to set up an ODBC connection on your PC and wherever you deploy the app. This is an example that I've used when connecting to an Informix database, which used an ODBC connection. You'll need to install the drivers for MySql first.

Web.config connection string for an Informix database

<add name="odbcConnection" connectionString="Driver={IBM INFORMIX 3.82 32 BIT};uid=odbcUsername;pwd=odbcPassword;database=odbcDatabase; host=odbcHostName;srvr=odbcServerName;serv=odbcServ;pro=onsoctcp;cloc=en_US.819;dloc=en_US.819;vmb=0;condb=1;xcl=0;curb=0;scur=0;icur=0;oac=1;optofc=0;rkc=0;odtyp=0;fbs=4096;ddfp=0;dnl=0;rcwc=0" providerName="System.Data.Odbc"/>

DataAccess method

Dim cnStr As String = ConfigurationManager.ConnectionStrings("odbcConnection").ToString

Public Function GetTable() As Data.DataSet
    Dim ds As New Data.DataSet
    Dim sql As String = ""

        Using myConnection As OdbcConnection = New OdbcConnection(cnStr)
            Dim myCommand As New OdbcCommand()
            Dim oda As OdbcDataAdapter = New OdbcDataAdapter()
                sql = "SELECT * FROM table"

                If myConnection.State = ConnectionState.Closed Then
                    myConnection.Open()
                    myCommand = New OdbcCommand(sql, myConnection)
                    myCommand.CommandType = CommandType.Text
                    oda.SelectCommand = myCommand
                    oda.Fill(ds, "tblInfo")
                End If
        End Using
    Return ds
End Function
如梦亦如幻 2024-11-24 18:10:25

您可以将 Mysql.Data Nuget 包添加到您的项目中,然后只需更改 mysql 服务器的连接字符串,它就会为您工作。

You can Add Mysql.Data Nuget Package to your project and then just change the connection string for mysql server and it will work for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文