Click here to Skip to main content
15,910,872 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
hi guys im about making a software to sell it and im confused about sql server management studio and hosting from websites like bluehost,godaddy etc
i would like to know what is difference betwen them and which one should i use for selling softwares and does myhosting informations shown when someone will duplicate my software ?

What I have tried:

i think i said everything shortly and in brief
Posted
Updated 7-May-17 16:57pm

1 solution

SSMS is an IDE (like Visual Studio, Eclipse, etc.) for developing, testing and managing SQL Server databases. You use it to create databases, tables, views, stored procedures, etc. that are required for your application.

bluehost,godaddy, etc. are companies that host websites for you (among other things). Depending on what you are selling you could create a website using their services and use it to sell your software.
 
Share this answer
 
Comments
Ilyas Zahir 7-May-17 23:04pm    
i meant buy which one is better to use for example while linking my software with DB should i link it with company or my localhost ? and does information of my DB shown to people who dublicate softwares
Member 10317286 7-May-17 23:25pm    
The answer depends a lot on your software. In general you would use SSMS to create the database for your application. Connecting to the database is done in your code and has nothing to do with SSMS. If you are hosting the application then you would install the database somewhere that your application can access it - typically where you are hosting it, but exactly where depends on where the hosting company allows it to be installed. When hosted you control if and what others can see of your database and code.

If your software is downloaded and installed by the purchaser then they will be able to see your database and any source code, scripts, HTML pages that you ship with the product. They won't see anything that was used to create your executables that are not needed at runtime unless you want to allow it. For the stuff you have to give them there are some "code obfuscators" you can use (use Google to search for them) that make your code very hard to read and understand to keep people from stealing it.

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