Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/02/2013, 10:43
dorex_456
 
Fecha de Ingreso: febrero-2013
Mensajes: 13
Antigüedad: 11 años, 10 meses
Puntos: 0
Pregunta Conectar Sql Server con un script

Hola la situacion es la siguente no me puedo conectar a sql con este archivo que estoy haciendo mal.

<script type="text/javascript">

function conectar()
{

var conexion=new ActiveXObject("ADODB.Conecction");
var conexionString="Provider=SQLOLEDB;data source = 192.31.3.23; initial catalog = ventas; user id = admin; password = admin123;";
conexion.open(conexionString);

var rs=new ActivexXObject("ADODB.Recorset");
rs= "select articulo from detalle_facturas where articulo='0012'";

document.write(articulo);

rs.close();
conexion.close();
}

</script>

<html>
<body>
<button name="mostrar" value="mostrar" onclick="conectar()">mostrar</button>
</body>
</html>