Click here to Skip to main content
15,891,708 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm actually working on a capstone project. An online store with an admin side on a windows form. What I am planning to do is to develop an online store, where its sales and inventory and customer profile management is managed by a windows form.

What I have tried:

Im currently formulating the project.
Posted
Updated 11-Apr-21 20:47pm

Sure. Database engines are completely client agnostic. They don't care about where or what type of client the queries are coming from.
 
Share this answer
 
Comments
Richmon Russel Gaspar 12-Apr-21 3:31am    
what if I have a web host mysql database?
Dave Kreskowiak 12-Apr-21 9:54am    
It does not matter. Though, if you're going to expose a database to the internet, you would be better served putting a REST API in front of the database so only the API can work directly with the database and your website and Forms app has to work with the API to manipulate the database.
It's certainly possible to do this. If you are using Azure (as an example), you could hook up to the cloud database like this Accessing SQL Azure from WinForms | Azure Blog and Updates | Microsoft Azure[^].
 
Share this answer
 
Comments
Richmon Russel Gaspar 12-Apr-21 3:30am    
what if I have a web host mysql database?
Pete O'Hanlon 12-Apr-21 4:21am    
You can do that as well. I'd be tempted to host a RESTful API on the server and interact with the database that way, if I were writing this.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900