8 个解决方案
#1
在SQL SERVER 2000中,
create table tablename(
ID int identity(1,1) NOT NULL,)
create table tablename(
ID int identity(1,1) NOT NULL,)
#2
设为自增
#3
rocedure Tfrm_worker.Btn_addClick(Sender: TObject);
var
id:integer;
begin
with table1 do
begin
Last;
id:=FieldByName('序号').asinteger;
Append;
Edit;
FieldByName('序号').asinteger:=id+1;
Post;
end;
end;
搞定,给分。。。
var
id:integer;
begin
with table1 do
begin
Last;
id:=FieldByName('序号').asinteger;
Append;
Edit;
FieldByName('序号').asinteger:=id+1;
Post;
end;
end;
搞定,给分。。。
#4
Create Table TableName
(ID int identity(1,1) NOT NULL)
(ID int identity(1,1) NOT NULL)
#5
use filemanager
go
create table zwb
( zwid int identity(1,1),
dah char(28) not null,
zwpic image ,
zwwd text
)
go
关键是zwid int identity(1,1)这句话!
go
create table zwb
( zwid int identity(1,1),
dah char(28) not null,
zwpic image ,
zwwd text
)
go
关键是zwid int identity(1,1)这句话!
#6
?
#7
是不是写上 identity(1,1)就自动增量..
#8
对!
或者你在定义里面标志设置位真
或者你在定义里面标志设置位真
#1
在SQL SERVER 2000中,
create table tablename(
ID int identity(1,1) NOT NULL,)
create table tablename(
ID int identity(1,1) NOT NULL,)
#2
设为自增
#3
rocedure Tfrm_worker.Btn_addClick(Sender: TObject);
var
id:integer;
begin
with table1 do
begin
Last;
id:=FieldByName('序号').asinteger;
Append;
Edit;
FieldByName('序号').asinteger:=id+1;
Post;
end;
end;
搞定,给分。。。
var
id:integer;
begin
with table1 do
begin
Last;
id:=FieldByName('序号').asinteger;
Append;
Edit;
FieldByName('序号').asinteger:=id+1;
Post;
end;
end;
搞定,给分。。。
#4
Create Table TableName
(ID int identity(1,1) NOT NULL)
(ID int identity(1,1) NOT NULL)
#5
use filemanager
go
create table zwb
( zwid int identity(1,1),
dah char(28) not null,
zwpic image ,
zwwd text
)
go
关键是zwid int identity(1,1)这句话!
go
create table zwb
( zwid int identity(1,1),
dah char(28) not null,
zwpic image ,
zwwd text
)
go
关键是zwid int identity(1,1)这句话!
#6
?
#7
是不是写上 identity(1,1)就自动增量..
#8
对!
或者你在定义里面标志设置位真
或者你在定义里面标志设置位真