0

I'm a new bee to development. I need to run MYSQL(phpMyAdmin) in LAN. I can run .NET appication (vb.net) and mysql on local machine. Please explain how to run MYSQL in LAN ..

My local PC connection strings

imports MySql.Data.MySqlClient
Module iJob
    Public MyConnection As New MySqlConnection
 Function Connection() As MySqlConnection
    'Connect Database
        MyConnection.ConnectionString = "LocalHost;" _
     & "user id=;" _
     & "password=;" _
     & "database=;"
    '
        MyConnection.Open()
        Return MyConnection
 End Function
End Module
user2667314
  • 33
  • 1
  • 1
  • 5
  • Which server do you , I mean IIS or Apache? especially on the server/machine where mysql resides – skv Aug 10 '13 at 03:39
  • Dear skv, i have 2 pc , 1 pc(windows 7) which i install wamp server (php myadmin) and run vb.net application using above connection string. now i want to run application in second pc(windows) using same database . Please explain what to do . .. – user2667314 Aug 10 '13 at 03:51

0 Answers0