將Sql查詢語句獲取的資料插入到List列表裡面

2022-03-28 17:37:43 字數 862 閱讀 8636

sql查詢語句獲取的資料是分格式的,我們還用sqldatareader來做,然後用idatareader來接收讀取,以下是**:

//

我想查詢乙個使用者表的資訊,該使用者有姓名,密碼,資訊三列

//1.定義乙個使用者型別的list陣列,userinfo類的**在下方

listuserinfo = new list();

//2.我們要讀取查詢語句的資料,並且儲存了。這裡我們將使用idatareader語句

//資料庫類的例項,類的**在下方

db db = new

db();

//解析方法

using(idatareader read=db.read("

select * from userinfo"))

}

userinfo類的**:

public

class

userinfo

public

string user_passwd

public

string user_region

}

db類的**:

public

class

db

//執行語句的資料庫方法

public sqlcommand command(string

sql)

//行數影響的方法

public

int execute(string

sql)

//返回查詢結果的方法

public sqldatareader read(string

sql)

}

在VS裡面寫SQL語句將資料插入到Oracle裡面

oracle資料庫的表的結構如下,我想在vs裡面動態的插入3列,datacat id predatacat id datacat chnname這3列,這裡只說拼接的字串,不討論執行的方法,int i 1,string datasetname 下面的字串可以直接貼上到vs裡面直接用 string s...

Mysql批量插入資料sql語句

假定我們的表結構如下 create table example example id int not null,name varchar 50 not null,value varchar 50 not null,other value varchar 50 not null 通常情況下單條插入的s...

sql語句的簡單查詢 插入修改和刪除

1,查詢所有字段 select from test2,查詢單個字段 select name from test3,查詢表的多個字段 select name,age from test4,給字段命名 第一種方式 select name as n,age as a from test第二種方式 也可以把...