06/12/2007, 11:30
|
| | Fecha de Ingreso: febrero-2003
Mensajes: 167
Antigüedad: 21 años, 11 meses Puntos: 1 | |
Mas dudas de principiante Tengo muchas dudas...demasiadas. Por ejemplo, vean el siguiente ejemplo que saque de un tutorial. Se puede trabajar con bases de datos sin crear el objeto connection?:
<html>
<head><title>Listado de registros</title></head>
<%SQLtxt = "SELECT Producto, Cantidad, Precio FROM almacen "%>
<body>
<%set rs = CreateObject("ADODB.Recordset")
rs.Open SQLtxt, "DSN=Mibase"
%>
<center>
<table border="0" width="32%" bgcolor="#C0C0C0">
<tr>
<td width="100%">
<p align="center"><b><big>Listado de registros</big></b></td>
</tr>
</table>
<h3></center>
<br>
</h3>
<table BORDER="1" CELLSPACING="0" BORDERCOLOR="#000000"
CELLPADDING="2" width="100%">
<tr>
<td BGCOLOR="#C0C0C0"><b>Nombre de producto</b></td>
<td BGCOLOR="#C0C0C0"><b>Cantidad</b></td>
<td BGCOLOR="#C0C0C0" align="right"><b>Precio</b></td>
</tr>
<%
Do While NOT rs.EOF%>
<tr>
<td><%= rs("Producto")%></td>
<td><%= rs("Cantidad")%></td>
<td align="right"><%= FormatCurrency(rs("Precio"))%></td>
</tr>
<% rs.MoveNext
Loop
rs.Close
%>
</table>
</body></html |