黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

VB 實例 顯示數(shù)據(jù)庫數(shù)據(jù)

vb 實例

顯示數(shù)據(jù)庫數(shù)據(jù)

@code
dim db = database.open("smallbakery") 
dim query = "select * from product" 
end code

<html> 
<body> 
<h1>small bakery products</h1> 
<table border="1" width="100%"> 
<tr>
<th>id</th> 
<th>product</th> 
<th>description</th> 
<th>price</th> 
</tr>
@code
dim row
for each row in db.query(query)
end code

<tr> 
<td>@row.id</td> 
<td>@row.name</td> 
<td>@row.description</td> 
<td align="right">@row.price</td> 
</tr> 
@code next end code
</table> 
</body> 
</html>

相關(guān)文章