English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

我想問呢點樣 check到一個ms access 既database 有幾多張data table 同埋果d datatable既名?

2006-12-22 12:39:24 · 2 個解答 · 發問者 ? 2 in 電腦與網際網路 程式設計

2 個解答

首先,你要使用 VB 裡面的元件:
「Microsoft ADO Data Control 6.0 (OLEDB)」
然後把元件加入你的 form 入面。
再定義:Dim FTRrs As New ADODB.Recordset
開啟你的 Database file:
strConn = "Data Source= filename;Provider=Microsoft.Jet.OLEDB.4.0"
strSQL = "Select * From [" & strTableName & "]"
FTRrs.Open strSQL, strConn, adOpenStatic, adLockOptimistic
最後請參看以下這一個網頁:
http://www.w3schools.com/ado/ado_ref_recordset.asp
裡面有講解關於 ADO control 的所有 methods ,可能會包括 check data table 等等的功能。

2007-01-01 06:20:53 · answer #1 · answered by HUNG 7 · 0 0

Using the Microsoft ADO Data Control 6.0 (OLEDB).

2007-01-01 06:22:50 · answer #2 · answered by ? 6 · 0 0

fedest.com, questions and answers