我需要添加一个功能,从我的网络应用程序连接到本地sql express数据库。这些是从javascript制作它的任何选项,我可以用html5做到这一点但是每个浏览器都不支持它。
提前致谢...
答案 0 :(得分:2)
看看这个:
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;