Click to See Complete Forum and Search --> : C# and databases
Gbates
September 30th, 2009, 12:42 AM
--------------------------------------------------------------------------------
1. How can I make a database in "Microsoft sql server"?
2. I want to build a c# application which connects the database and is able to edit the database and to show it.
3. I want that every computer in the world be able to see and edit the database with my application.
4. I want the database to be able to watch and edit only with the application (security).
cilu
September 30th, 2009, 02:56 AM
I think you should explain what are you actually trying to do. I don't understand why should it be available "on internet". I think it should be on a web server where you host your services or application. Clients consume these services or use your application and database is hidden from them. They don't know anything about it.
So again, please explain what you want to do.
vcdebugger
September 30th, 2009, 06:44 AM
question numer 1 and 2 are quite confusing and contradicting as well !!
Gbates
September 30th, 2009, 06:58 AM
1. How can I make a database in "Microsoft sql server"?
2. I want to build a c# application which connects the database and is able to edit the database and to show it.
3. I want that every computer in the world be able to see and edit the database with my application.
4. I want the database to be able to watch and edit only with the application (security).
vcdebugger
September 30th, 2009, 07:08 AM
refer to this link : http://www.csharphelp.com/archives/archive103.html
and try to develop on that.
foamy
September 30th, 2009, 08:23 AM
1. How can I make a database in "Microsoft sql server"?
2. I want to build a c# application which connects the database and is able to edit the database and to show it.
3. I want that every computer in the world be able to see and edit the database with my application.
4. I want the database to be able to watch and edit only with the application (security).
1. Download and install Microsoft SQL Server Management Studio Express Edition. It will allow you to create and alter databases in Microsoft SQL Server.
2. People will not develop applications for you. Get started, and return with specific problems. Everyone will be happy to help you.
3. As cilu hinted, a Web-based (ASP.NET) application would be your best bet.
4. A web application hosted on a server would ensure this.
Gbates
September 30th, 2009, 08:49 AM
But it is a c# application.. it is not a web.
foamy
September 30th, 2009, 10:24 AM
C# is a programming language that can be used for both Windows Forms and Web applications
helgi147
September 30th, 2009, 01:24 PM
But it is a c# application.. it is not a web.
Are you want a client-server application?
Gbates
September 30th, 2009, 01:29 PM
So please tell me how to create a database in MICROSOFT SQL SERVER, and how to connect it in c#.. I don't want the database to be on my computer.. I want it to be availbe in any computer in the world..
BigEd781
September 30th, 2009, 01:29 PM
I think that you should learn how to program before attempting to make something complex. No one starts out making web apps using database back-ends, they write a "Hello World" type app and move up from there.
Shuja Ali
September 30th, 2009, 01:31 PM
I guess before getting into all the technical jargon, what you actually need is books on C#, ASP.NET and SQL Server.
Get couple of books from Microsoft Press, read them and you would be better of yourself.
eclipsed4utoo
September 30th, 2009, 01:49 PM
So please tell me how to create a database in MICROSOFT SQL SERVER, and how to connect it in c#.. I don't want the database to be on my computer.. I want it to be availbe in any computer in the world..
on how to create a database...
http://lmgtfy.com/?q=how+to+create+a+database+in+sql+server
on the notion of your application being "available in any computer in the world", you will need this to be a web application. And yes, your web application can be written in C#.
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.