程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net access添加返回自遞增id的實現方法第1/3頁

asp.net access添加返回自遞增id的實現方法第1/3頁

編輯:ASP.NET基礎
先看界面:


添加後數據庫:


而所要執行的語句:
復制代碼 代碼如下:
string name_    = this.tbxUseName.Text.Trim();    
string webname_ = this.tbxWebName.Text.Trim();    
string url_ = this.tbxUrl.Text.Trim();    
AddFieldItem("news_Title", name_);    
AddFieldItem("news_Source",webname_);    
AddFieldItem("news_Anthor",url_);    
common.salert("添加成功,添加後的ID為" + insert("db_news").ToString());    

當我看完小孔子cms對插入數據的處理後,自我感覺.net水平還一直停留在asp中。下面結合代碼講講:
       需要說明的是,小孔子cms在插入時使用的是多層架構,而這篇文章主要著重講解的是學習,所以我就沒弄成多層的了。插入時采用了參數化的過程,類似sql的存儲過程;在實際應用中插入數據十分簡單,正如上面代碼所顯示的。

先講一個類[DbKeyItem]:
復制代碼 代碼如下:
/// <summary>    
/// 數據表中的字段屬性:字段名,字段值    
/// </summary>    
public class DbKeyItem    
{    

    /// <summary>    
    /// 字段名稱    
    /// </summary>    
    public string fieldName;    

    /// <summary>    
    /// 字段值    
    /// </summary>    
    public string fieldValue;    

    public DbKeyItem(string _fieldName, object _fieldValue)    
    {    
        this.fieldName = _fieldName;    
        this.fieldValue = _fieldValue.ToString();    
    }    
}   

這個類包含兩個屬性:
1、fieldName:字段名
2、fieldValue:字段值

這個類主要用於: 
復制代碼 代碼如下:
protected ArrayList alFieldItems = new ArrayList(10);    

/// <summary>    
/// 添加一個字段/值對到數組中    
/// </summary>    
public void AddFieldItem(string _fieldName, object _fieldValue)    
{    
    _fieldName = "[" + _fieldName + "]";    
    //遍歷看是否已經存在字段名    
    for (int i = 0; i < this.alFieldItems.Count; i++)    
    {    
        if (((DbKeyItem)this.alFieldItems[i]).fieldName == _fieldName)    
        {    
            throw new ArgumentException("字段已經存在");    
        }    
    }    
    this.alFieldItems.Add(new DbKeyItem(_fieldName, _fieldValue));    
}   

當前1/3頁 123下一頁閱讀全文
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved