Create a System
-
Hi to all, i'm planning to create a new system using Visual studio for my company. but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use. besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ?? thanks Warm Regards Veon
-
Hi to all, i'm planning to create a new system using Visual studio for my company. but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use. besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ?? thanks Warm Regards Veon
veon cheng wrote:
but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use.
Visual studio can make installer files for you. It offers a package and deployment kind of project template.
veon cheng wrote:
besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ??
Is this a stand-alone application and database is centralized? If yes, requesting users to install a copy of DB is a poor idea. You can keep the DB in your server and provide an interface to access it (web service or WCF). If all your users need separate database instances, they need to install DB on their machines. However, if the data to be stored is small and doesn't require a complex RDBMS system, you can use file system databases like SqlLite[^]. :)
Navaneeth How to use google | Ask smart questions
modified on Sunday, August 2, 2009 11:47 PM
-
Hi to all, i'm planning to create a new system using Visual studio for my company. but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use. besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ?? thanks Warm Regards Veon
First of all you need to know the purpose of your system. Design the for accordingly, Design Database. Now try to implement it step by step. After complete,, make the installer of your system from visual studio it. This link will help you, C#
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you. View My Latest Article
-
veon cheng wrote:
but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use.
Visual studio can make installer files for you. It offers a package and deployment kind of project template.
veon cheng wrote:
besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ??
Is this a stand-alone application and database is centralized? If yes, requesting users to install a copy of DB is a poor idea. You can keep the DB in your server and provide an interface to access it (web service or WCF). If all your users need separate database instances, they need to install DB on their machines. However, if the data to be stored is small and doesn't require a complex RDBMS system, you can use file system databases like SqlLite[^]. :)
Navaneeth How to use google | Ask smart questions
modified on Sunday, August 2, 2009 11:47 PM
hi Navaneeth, Thanks for replying. ok, my company will be running the admin of this system, it has a number of outlets will be using this system as well how am i suppose to make the system communicate. for example there is some update in outlet A. And i wan all the other outlets and the admin system to update the info of outlet A to all the system. i'm very confuse in planing the system right now. pls give me some advice ,Thanks Warm Regards Veon
-
Hi to all, i'm planning to create a new system using Visual studio for my company. but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use. besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ?? thanks Warm Regards Veon
hi to all Thanks for replying. ok, my company will be running the admin of this system, it has a number of outlets will be using this system as well how am i suppose to make the system communicate. for example there is some update in outlet A. And i wan all the other outlets and the admin system to update the info of outlet A to all the system. i'm very confuse in planing the system right now. pls give me some advice ,Thanks Warm Regards Veon
-
hi Navaneeth, Thanks for replying. ok, my company will be running the admin of this system, it has a number of outlets will be using this system as well how am i suppose to make the system communicate. for example there is some update in outlet A. And i wan all the other outlets and the admin system to update the info of outlet A to all the system. i'm very confuse in planing the system right now. pls give me some advice ,Thanks Warm Regards Veon
veon cheng wrote:
how am i suppose to make the system communicate. for example there is some update in outlet A. And i wan all the other outlets and the admin system to update the info of outlet A
Hard to tell without knowing much about your systems. One way to do is keeping a centralized database. All updates should go to this DB. So your systems can poll this DB and display the changed data. :)
Navaneeth How to use google | Ask smart questions
-
hi to all Thanks for replying. ok, my company will be running the admin of this system, it has a number of outlets will be using this system as well how am i suppose to make the system communicate. for example there is some update in outlet A. And i wan all the other outlets and the admin system to update the info of outlet A to all the system. i'm very confuse in planing the system right now. pls give me some advice ,Thanks Warm Regards Veon
Your requirement is similar to a Point of Sales / Retail system. The outlet has to keep an offline database, and synchronize with the server periodically or at end of day. New or updated data from outlet shall be sent to centralized server, and latest data will be downloaded from server and updated in the offline database. The communication can be lease line, dial up, or through internet (you will need a DNS or fix IP for this). The logic of synchronization is the difficult part, especially the master data from the outlet to the server. I would suggest you approach vendors of existing system, instead of creating your own from scratch while without much experience in this field.
-
Hi to all, i'm planning to create a new system using Visual studio for my company. but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use. besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ?? thanks Warm Regards Veon
Are you actually going to build the system or be the business contract to the builder of the system. I fear it is the former - attempting to build this solution with no prior knowledge of applications design is going to be very difficult. I don't want to discourage you, no thats a lie, hire a professional to do the job, work closely with that person in the knowledge that you will be supporting the finished app and learn as much as possible. This will achieve few things, your company may get a good solution, you may get to learn about application sdesign and development, your copany will benifit from having a knowledgable support person in place.
Never underestimate the power of human stupidity RAH
-
Hi to all, i'm planning to create a new system using Visual studio for my company. but how am i suppose to create the system so that when the users wants to use this system he or she must install before he can use. besides that the users does not have a database system like SQL, how are they going to save the data or read from the data i created in my DB. are they suppose to install the DB as well ?? thanks Warm Regards Veon
Hi to all, =) thanks for all ya advice. i'm very glad that you guys reply me and gave me some good advice.=) i'm new to the corporate world just step into the REAL IT world.haha thanks hope to hear from u guys again Warm Regards Veon