gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 04:56:06 25 4
gpt4 key购买 nike

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

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

最佳答案

尝试其中一些链接开始

Using MySQL with ASP.NET

Connect to MySQL database from ASP.NET

Using MySQL with ASP.NET

编辑:看起来您将不得不使用 ODBC 连接。你需要 set up an ODBC connection on your PC以及您部署应用程序的任何地方。这是我在连接到 Informix 时使用的示例数据库,它使用 ODBC 连接。你需要 install the drivers for MySql first .

Informix 数据库的 Web.config 连接字符串

<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"/>

数据访问方法

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

关于.net - 在哪里可以找到有关使用 MySQL 设置 ASP.NET Web 应用程序的信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6514642/

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