vote up 3 vote down star
2

Can any body give me some sample source code showing how to connect to a SQL server 2005 database from javascript locally.I am learning web programming on my desktop.Or do I need to use any other scripting language. Suggest me some alternatives if u have. (but I am now trying to do it with javascript).Thanks in advance.My sql server is locally installed on my desktop -SQL Server Management Studio 2005 and IE7 browser..

flag

71% accept rate
Definitely not recommended that you do this, but it is nice to see what answers may come out of it. – TheTXI May 13 at 12:42

5 Answers

vote up 17 vote down check

You shouldn´t use client javascript to access databases for several reasons (bad practice, security issues, etc) but if you really want to do this, here is an example:

var connection = new ActiveXObject("ADODB.Connection") ;

var connectionstring="Data Source=<server>;Initial Catalog=<catalog>;User ID=<user>;Password=<password>;Provider=SQLOLEDB";

connection.Open(connectionstring);
var rs = new ActiveXObject("ADODB.Recordset");

rs.Open("SELECT * FROM table", connection);
rs.MoveFirst
while(!rs.eof)
{
   document.write(rs.fields(1));
   rs.movenext;
}

rs.close;
connection.close;

A better way to connect to a sql server would be to use some server side language like PHP, Java, .NET, among others. Client javascript should be used only for the interfaces.

And there are rumors of an ancient legend about the existence of server javascript, but this is another story. ;)

link|flag
Read this post: kuro5hin.org/story/2005/… – Zaagmans May 13 at 12:32
10  
Congratulations on being pretty much the only person here who actually shows that it is possible (although not recommended). – TheTXI May 13 at 12:41
1  
While this could work on the OP's set up - he did say he wanted to learn "web programming" - and Internet Explorer in a low security environment is not web programming. – David Dorward May 13 at 12:43
I don´t understand why this comment qualifies as a negative vote. I explain how to do it but tell him to not use it. – fbinder May 13 at 12:45
fbinder: some people will vote this down because they think that any attempt at database connectivity and querying from JavaScript is a big no-no (even though you state that pretty clearly). If I were you, I wouldn't mind the one or two negative votes you get on this and just enjoy the numerous up votes it will receive due to it being the only answer that actually answers the question posed. – TheTXI May 13 at 13:13
show 1 more comment
vote up 0 vote down

I dont think you can connect to SQL server from client side javascripts. You need to pick up some server side language to build web applications which can interact with your database and use javascript only to make your user interface better to interact with.

you can pick up any server side scripting language based on your language preference :

  • PHP
  • ASP.Net
  • Ruby On Rails
link|flag
vote up 0 vote down

Javascript is a client-side browser technology and as such you cannot "connect" directly to a database such as SQL 2005. If you require resources on the server (data from the database) you're best option is using a server-side programming language like php or asp.net to render out the HTML you need having fetched the data from the database. If you're super keen to use javascript to get your data you could use AJAX to make a request to the server but you're still going to need some server-side code to process these requests anyway.

I recommend reading up on server-side programming for the web at sites such as http://www.w3schools.com/ if you're just getting started in this stuff.

link|flag
vote up 1 vote down

SQL 20005+ supports native WebServices that you could almost use although I wouldn't suggest it, because of security risks you may face. Why did I say almost. Well Javascript is not SOAP native, so it would be a bit more complicated to actually make it. You'd have to send and receive SOAP via XmlHttpRequest. Check google for Javascript SOAP clients.

link|flag
vote up 0 vote down

(sorry, this was a more generic answer about SQL backends--I hadn't read the answer about SQL Server 2005's WebServices feature. Although, this feature is still run over HTTP rather than more directly via sockets, so essentially they've built a mini web server into the database server, so this answer is still another route you could take.)

You can also connect directly using sockets (google "javascript sockets") and by directly at this point I mean using a Flash file for this purpose, although HTML5 has Web Sockets as part of the spec which I believe let you do the same thing.

Some people cite security issues, but if you designed your database permissions correctly you should theoretically be able to access the database from any front end, including OSQL, and not have a security breach. The security issue, then, would be if you weren't connecting via SSL.

Finally, though, I'm pretty sure this is all theoretical because I don't believe any JavaScript libraries exist for handling the communications protocols for SSL or SQL Server, so unless you're willing to figure these things out yourself it'd be better to go the route of having a web server and server-side scripting language in between the browser and the database.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.