前沿拓展:
vb數(shù)據(jù)庫(kù)
date/tim037。用雙精度浮點(diǎn)數(shù)記錄時(shí)間可以記載幾十萬(wàn)年的時(shí)間,戰(zhàn)所以你在輸入時(shí)間的時(shí)候完全無(wú)需擔(dān)心會(huì)超出限制的問題,你只需按照指定的格式輸入即可,系統(tǒng)會(huì)自動(dòng)將它轉(zhuǎn)換為浮點(diǎn)數(shù)格式進(jìn)行儲(chǔ)存的。
今天學(xué)習(xí)的主要內(nèi)容是劉金玉老師MySQL數(shù)據(jù)庫(kù)零基礎(chǔ)教程第4期。
一、準(zhǔn)備工作
選擇需要查看的數(shù)據(jù)表,點(diǎn)擊瀏覽即可看到相應(yīng)的數(shù)據(jù)。選擇需要修改或者刪除的數(shù)據(jù),第二選擇編輯、刪除即可完成數(shù)據(jù)的修改和刪除。
拓展知識(shí):
vb數(shù)據(jù)庫(kù)
'引用
C:\Program
Files\Common
Files\System\ado\msado15.dll
Dim
Conn
As
New
ADODB.Connection
Dim
RS
As
New
ADODB.Recordset
Dim
SQL
As
String
Private
Sub
Command1_Click()
'設(shè)置連接字符串
Conn.ConnectionString
=
"Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:\Program
Files\Microsoft
Visual
Studio\VB98\NWIND.MDB;Persist
Security
Info=False"
'設(shè)置游標(biāo)
Conn.CursorLocation
=
adUseClient
'打開連接
Conn.Open
'設(shè)置要查詢的條件
'意為列出Employees表employeeid字段=1的內(nèi)容
SQL
=
"select
*
from
Employees
where
employeeid=1"
'打開查詢
RS.Open
SQL,
Conn,
3,
3
'在立即窗口輸入
LastName
字段的內(nèi)容
Debug.Print
RS("LastName")
'關(guān)閉查詢
RS.Close
Set
RS
=
Nothing
'關(guān)閉連接
Conn.Close
End
Sub
原創(chuàng)文章,作者:九賢生活小編,如若轉(zhuǎn)載,請(qǐng)注明出處:http://m.xiesong.cn/41218.html