SQL語句建立引數

2021-04-22 14:15:30 字數 434 閱讀 8602

建立引數:

sqlcon.parameters.add(new sqlparameter(「@id」,sqldbtype.smallint,2));

設定引數值:

sqlcon.parameters[「@id」].value=job_id.text;

通過命令對角插入資料

string insertcmd=」insert into jobs(job_id,job_desc) values(@id,@desc)」

sqlcommand sqlcmd=new sqlcommand(insertcmd,sqlcon);

public

static

bool

insertoperate(person p)

catch

(exception e)

}

sql語句建立主鍵

對於有資料的表,在企業管理器裡面建立索引時,容易超時,使用sql語句只要在,工具 選項設定超時值為0,就不會超時。sql語句建立有聯合主鍵的表 create table tabcheck check id int not null,check no int not null,startdate da...

建立SQL語句 面試

建立乙個表 create table if not exists teachaers tea id integer primary key autoincrement,tea name text,tea gender text,tea age interger,tea salary text pri...

sql語句建立表

create table search custom mall id int 11 not null primary keyauto increment,uid int 11 not null name varchar 150 not null search mall id int 11 not n...