1、表名的獲取方法:openschema
set recordset = connection.openschema (adschematables)
不要忘了在前面加上adschematables的定義:
const adschematables = 20
最終的語句為:
'不要忘了在前面加上adschematables的定義 const adschematables = 20 set recordset = connection.openschema (adschematables)
2、列名的獲取方法:rs.fields(i).name
'示意** sqlstr = "select * from tablenamestr" rs.open sqlstr,conn for i = 0 to rs.fields.count print rs.fields(i).name next 'note: tablenamestr可以是通過1中獲得的表名。
資料庫(庫操作)
information schema 虛擬庫,不占用磁碟空間,儲存的是資料庫啟動後的一些引數,如使用者表資訊 列資訊 許可權資訊 字元資訊等 performance schema mysql 5.5開始新增乙個資料庫 主要用於收集資料庫伺服器效能引數,記錄處理查詢請求時發生的各種事件 鎖等現象 my...
資料庫 資料庫基本操作
操作練習 修改表結構 表資料的操作 實現 1 建立表 create table student stu no char 12 not null primary key,stu name varchar 20 not null gender tinyint 1 default1,age tinyint...
SQL資料庫的表結構操作
更改資料庫中物件屬性雖然很多時候是不必要的。假如在建立表時,表名,列名 字段資料型別拼寫錯誤。在插入資料操作時發現物件 資料型別不一致,要檢查插入資料與資料庫是否匹配,也可以更改表結構。只能更改當前資料庫中的物件名稱或資料型別名稱。大多數系統資料型別和系統物件的名稱都不能更改。要修改資料庫中指定的物...