<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="/statics/demosource/showrazor.css">
<span class="marked">@Code
Dim db = Database.Open("SmallBakery")
Dim query = "SELECT * FROM Product"
<h1>Small Bakery Products</h1>
<table border="1" width="100%">
<th>Description</th>
<span class="marked">@Code
for each row in db.Query(query)
<td><span class="marked">@row.Id</span></td>
<td><span class="marked">@row.Name</span></td>
<td><span class="marked">@row.Description</span></td>
<td align="right"><span class="marked">@row.Price</span></td>
<span class="marked">@Code