imports system.data
imports system.data.sqlclient rem 有資料庫連線的時候就要寫這兩行
public
class form1
private
sub button2_click(byval sender as system.object, byval e as system.eventargs) handles button2.click
using mycon as
new sqlconnection("data source=lty-pc;initial catalog=discuz!;integrated security=true")
dim sql as sqlcommand = new sqlcommand("select * from dnt_forums", mycon)
mycon.open()
dim rs as sqldatareader = sql.executereader
if rs.hasrows = true
then
while rs.read
label1.text += rs("fid").tostring() & vbcrlf
endwhile
endif
rs.close()
sql.dispose()
mycon.close()
end using
endsub
endclass
從資料庫讀出資料分頁顯示
從資料庫中把資料讀出來 再渲染到頁面上 defbook view request book list book.objects.all return render request,book view.html 把讀取的內容交給頁面,然讓頁面交給瀏覽器 book list book.objects.a...
檔案儲存到資料庫 從資料庫讀出寫成檔案
一 儲存檔案到資料庫中。將檔案儲存到資料庫中,實際上是將檔案轉換成二進位製流後,將二進位製流儲存到資料庫相應的字段中。在sql server中該字段的資料型別是image,在access中該字段的資料型別是ole物件,在orcle中是blob型別。儲存檔案到資料庫中 fileinfo fi new ...
從資料庫讀出資料動態生成選單欄
注 這個是當初水平有限比較初級的 後來後來 就 有相對高階點的參考 dbunitly層 using system using system.collections.generic using system.linq using system.text using system.data.sqlcli...