獲取資料庫某張資料表的字段資訊

2021-04-15 01:11:18 字數 1386 閱讀 9123

adoc_main.openschema(sicolumns,vararrayof([null,null,mytable]),emptyparam,adodataset1);

while not adodataset1.eof do

begin...    end;

其中adodataset1的屬性有:

able_catalog            :  (sql中)所屬資料庫名

table_schema             :

table_name               :  所屬表名

column_name              :  名稱

column_guid              :

column_propid            :

ordinal_position         :  序號

column_hasdefault        :  是否有預設值

column_default           :  預設值

column_flags             :

is_nullable              :  是否允許為空

data_type                :  型別(integer)

type_guid                :

character_maximum_length :  字元欄位的最大長度

character_octet_length   :  字元欄位的八進位制長度

numeric_precision        :  數值字段的精度

numeric_scale            :  數值字段的小數字數

datetime_precision       :  日期欄位的精度

character_set_catalog    :

character_set_schema     :

character_set_name       :

collation_catalog        :

collation_schema         :

collation_name           :

domain_catalog           :

domain_schema            :

domain_name              :  說明

description              :

column_lcid              :

column_compflags:

column_sortid:

column_tdscollation:

is_computed:false

查詢資料表的字段資訊

col name欄位名,col type欄位型別,col comment欄位含義 tablename表名,username使用者名稱 select c.column name col name,c.data type col type,select comments from all col com...

資料庫資料表互動資訊

webmethod description 更換表資訊,表名,條件,資料型別 0,字元性型別 包括時間 1數字性型別 包括浮點 可用於任何表 包括字典表 public string updatetables string tablename,string str dataset ds1 new da...

檢視mysql資料庫 資料表編碼資訊

通過mysql的命令列即可以檢視資料庫 資料表的編碼資訊。1.檢視資料庫編碼格式 show variables like character set database 2.檢視資料表的編碼格式 show create table 表名 編碼格式的正確與否,影響著資料庫中的資料 尤其是中文資料 能否正...