connection物件:
主要用來與資料庫建立聯機,它提供兩種常用方法:open方法,用 來建立並開啟乙個資料庫的聯機;close方法,將資料庫的聯機關閉。
command物件:
對資料庫執行命令操作,如進行資料的查詢、修改、新增、刪除等,實際上就是傳送sql指令,sql指令封裝在command物件中。
datareader物件:
每執行一次read()方法,就返回乙個bool值,說明是否有資料可讀,並且所檢索的資料向下走一行。
dataadapter物件的常用屬性有:
selectcommand屬性:選擇資料來源中的記錄。
insertcommand屬性:往資料來源中新增新記錄。
updatecommand屬性:更新資料來源中的記錄。
deletecommand屬性:從資料來源中刪除記錄。
dataadapter物件的常用方法是fill方法:主要作用是從資料來源中選擇資料以填充資料集;update方法:在對資料集完成增加、刪除或修改工作後,再呼叫update方法更新資料來源。
dataset物件:
資料集的操作:
宣告資料集:dataset ds =new dataset();
構造資料介面卡dataadapter
sqldataadapter da=new sqldataadapter(「select * from bookinfo」, conn);
填充資料集
da.fill(ds,」bookinfo「); //bookinfo表示資料集中的表名
訪問資料集中的表:
ds.tables[「bookinfo」] 或 ds.tables[0]
說明:ds.tables用於訪問資料集ds中的表集合; ds.tables[「bookinfo」]訪問表集合中名為bookinfo的表;ds.tables[0]表示ds資料集中第乙個表。
訪問資料集表的行:
string str =「bookid=』51』」;
datarow rows =ds.tables[「bookinfo」].select(str);
form表單中常用物件
1.如下 1 23208 209225 2262.效果如下 3.說明 combo這個元件是需要繫結乙個資料來源才能使用,所以store和displayfield和valuefield是必須的 4.常用屬性 1.valuefield 字元型 value值欄位 2.displayfield 字元型 顯示...
String物件中常用方法
strobj.charcodeat index 說明 index將被處理字元的從零開始計數的編號。有效值為0到字串長度減1的數字。如果指定位置沒有字元,將返回nan。例如 var str abc str.charcodeat 0 結果 65 2 fromcharcode方法從一些unicode字串中...
JS中常用的內部物件
常用的js內部物件有11個 array boolean date function global math number object regexp error以及string array物件 提供對建立任何資料型別的陣列的支援。arrayobj new array arrayobj new arr...