SqlConnection problem - MySQL .NET Framework I have installed ODBC driver for MySQL. This is my Web.Config: connectionString = "DSN = MySQL_server;UID = spotit;description = Connection to remote MySQL;server = access;database = spotit;port = 3306;pwd = traffic54" providerName = "System.Data.Odbc" / > I had an exception of the connection string of the DSN unrecognized. This is my method: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Configuration; using System.Runtime.InteropServices
Visual Web Developer 2010 Express - connect to MySQL .NET Framework Hi, I cannot find VWD newsgroup so I post the message here. Just downloaded VWD 2010, would like to know the steps to connect to MySQL 5. I have downloaded MySQL ODBC driver and added into System -> DSN already. C# Discussions MySQL ODBC driver (1) MySQL (1) Oracle (1) MySQL connection (1) ADO.NET (1) Visual (1) Database (1) Alan T (1) Don't use
regarding creating dsn user automatically i want create dsn automatically for mysql 5.1 driver after installation of my software. i created batch for file creating dsn @ECHO OFF & SETLOCAL PUSHD %~dp0 odbcconf configdsn "MySQL ODBC 5.1 Driver" "DSN = abc \ Description = My connection to my database \ SERVER = (local) \ Trusted_Connection = No \ Database = abc \ Port = 3306 UID = root \ PWD = " POPD EXIT when i run this batch file, the dsn created in the ODBC but when i want view the configure of the dsn, the user and database not show on ODBC Data source configuration The dsn name is
how to play wave file C# .NET i am store to mysql database in waveformat but i cannot retrive wave format file, how to retrivre and play new code regarding these project post me Thanks and Regards Selvakumar.M My code: using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI
datagrid Hi, I try to display the datas from database and in datagrid. Am using mysql databse. string MyConString = "SERVER = localhost;" + "DATABASE = property;" + "UID = root;" + "password = ;"; MySqlConnection connection = new MySqlConnection(MyConString whats wrong with this code. Thanks in advance. Thanks, Meena HI Follow this example using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; using System.Data.Sql; namespace datagridview