|
-
September 30th, 2009, 12:42 AM
#1
C# and databases
--------------------------------------------------------------------------------
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).
Last edited by Gbates; September 30th, 2009 at 06:59 AM.
-
September 30th, 2009, 02:56 AM
#2
Re: C# and databases
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.
-
September 30th, 2009, 06:44 AM
#3
Re: C# and databases
question numer 1 and 2 are quite confusing and contradicting as well !!
-
September 30th, 2009, 06:58 AM
#4
Re: C# and databases
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).
-
September 30th, 2009, 07:08 AM
#5
-
September 30th, 2009, 08:23 AM
#6
Re: C# and databases
 Originally Posted by Gbates
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.
It's not a bug, it's a feature!
-
September 30th, 2009, 08:49 AM
#7
Re: C# and databases
But it is a c# application.. it is not a web.
-
September 30th, 2009, 10:24 AM
#8
Re: C# and databases
C# is a programming language that can be used for both Windows Forms and Web applications
It's not a bug, it's a feature!
-
September 30th, 2009, 01:24 PM
#9
Re: C# and databases
 Originally Posted by Gbates
But it is a c# application.. it is not a web.
Are you want a client-server application?
-
September 30th, 2009, 01:29 PM
#10
Re: C# and databases
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..
-
September 30th, 2009, 01:29 PM
#11
Re: C# and databases
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.
-
September 30th, 2009, 01:31 PM
#12
Re: C# and databases
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.
-
September 30th, 2009, 01:49 PM
#13
Re: C# and databases
 Originally Posted by Gbates
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...+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#.
===============================
My Blog
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|