Is it possible to connect my application
(created in vb.net), to a online database, like on the web?
if possible how?
Is it possible to connect my application
(created in vb.net), to a online database, like on the web?
if possible how?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
jherome holascaPosted Jan 7, 2008, 7:57 PM
"Host is not allowed to connect this mysql server"
Public Function connect()
conn.ConnectionString = "server = http://www.gigacities.net; " _
& "user id = earthsoft_jherome;" _
& "password = printfv;" _
& "database = earthsoft_users;"
Try
conn.Open()
MsgBox("OK!!")
Catch err As MySqlException
MsgBox(err.Message)
End Try
End Function
l pxPosted Jan 7, 2008, 2:45 AM
jherome holascaPosted Jan 6, 2008, 9:07 PM
i have a database in web, and i created a application made in vb.net and my data will come from that database, how could i connect my application to that database?
Blocked AccountPosted Jan 4, 2008, 6:54 AM
I am not getting your problem.
Please explain your problem in detail.
Happy Coding!!