精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

VB 實例 顯示數據庫數據

vb 實例

顯示數據庫數據

@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>

相關文章