hi.when I've built a database.how do integrate it with the internet?
i think u'll need to have a server
... such as the Apache HTTP server. I'd help you more, but I don't know more than this for now.
(The Apache HTTP server is software that you can download.)
If you're using Windows, you could get this download ( http://www.wampserver.com/en/ ) which has everything well integrated from the start.
u'll need a sever for clouding
Any database will need to be kept away from the Internet. The data is too valuable to put directly on such a dangerous network. That said, in order for a database to drive a website, the website being exposed to the Internet, a webserver, CGI programs and possibly other components will be needed. 63% of the web pages served on the Internet are served by webservers running Apache webserver. It can be downloaded from http://www.apache.org . CGI programs that can decode variables passed in, VALIDATE their values and query the database aren't that hard to write. They're largely concatenating SQL queries. Which programming language/framework is best for doing this is the subject of many religious wars. This is enough for a fairly sophisticated database driven website. Super sophisticated, super high volume sites would have other middleware components.
@beketso: can you elaborate the exact requirement, so that I can provide some exact/relevant input
First of all know you need server whether it will be "Apcahe" or "IIS" is your choice. You also need to download there server on www.apache.org or www.iis.net.... I think you should perfer for "Apcahe" due to large access of the apache server.
If you use IIS, then in the web.config file write a connection string as follows <connectionStrings> <add name="ConnStringDb1" connectionString="Data Source=localhost; Initial Catalog=YourDataBaseName; Integrated Security=True;" providerName="System.Data.SqlClient" /> </connectionStrings>
Are the apache downloads costly or free?
Apache is free in terms of money and software freedom. Software freedom is having the code available and being allowed (by law) to modify it and do (almost) whatever you want with it.
php-mysql-apache use this .. it's 100% free and php is quite very easy language http://www.apachefriends.org/en/xampp.html
thank u all.u have been veri helpful
No problem.
Join our real-time social learning platform and learn together with your friends!