我对此有巨大的麻烦。
What I want to do is: I want to create a system (in C#) that will (amongst other things) allow users to send simple messages to each other. So I want to create a MySQL database which will rest on a server. Other computers running the system will then have to connect remotely to this database and read a certain table to see if they have any new messages. I want the client computer to connect via the internet to the database on the server.
但我该怎么做?
- How do I create a database that can be connected to through the internet?
- How should my connection string look like on the client computer?
- What configurations do I need to do on both client and server computers?
非常感谢任何援助,如果你能建议我如何实现我的目标。我是一个非常胜任的编程员,但必须制止这些网络!
I am developing in C# using WPF to access the database. So it s a desktop app!