|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
DSN not found!!!
I got the following Err: Although I have installed the MySQL Driver and have created the DSN. Post error is the actual code:
ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: Microsoft.Data.Odbc.OdbcException: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified Source Error: Line 20: Line 21: objDA = New ODBCDataAdapter(strSQL, objConn) Line 22: objDA.Fill(ds, "rinfo") Line 23: dvw = ds.Tables("rinfo").DefaultView Line 24: MyDataGrid.DataSource = dvw -------------------------------------------------------- <%@ Page Language="VB" Debug="True" CompilerOptions='/R:"C:\Program Files\Microsoft.NET\Odbc.Net\Microsoft.Data.Odbc.dll"' %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="Microsoft.Data.Odbc" %> <script runat="server"> Dim strConn As String = "DSN=MySQL" Dim objConn As New ODBCConnection(strConn) Public Sub Page_Load (obj As Object, e As EventArgs) If Not Page.IsPostBack Then Dim objCmd As New ODBCCommand Dim objDA As New ODBCDataAdapter Dim dvw As DataView Dim ds As New DataSet Dim strSQL As String strSQL = "SELECT * FROM rinfo" objDA = New ODBCDataAdapter(strSQL, objConn) objDA.Fill(ds, "rinfo") dvw = ds.Tables("rinfo").DefaultView MyDataGrid.DataSource = dvw MyDataGrid.DataBind() End If End Sub </script> <html> <head> <title>:: :::: Restaurant List :::: ::</title> </head> <body> <asp:datagrid id="MyDataGrid" runat="server" /> </body> </html> ------------------------------------------------------- |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > DSN not found!!! |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|