Click here to Skip to main content
16,016,463 members

Comments by Member 10523130 (Top 44 by date)

Member 10523130 15-Feb-14 0:06am View    
i have saved my table.and i can see that column in my table
Member 10523130 15-Feb-14 0:05am View    
CREATE TABLE [dbo].[login] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[name] NCHAR (10) NULL,
[midname] NCHAR (10) NULL,
[surname] NCHAR (10) NULL,
[username] NCHAR (15) NULL,
[password] NCHAR (16) NULL,
[contact] NUMERIC (18) NULL,
[dob] VARCHAR (50) NULL,
[email] NVARCHAR (50) NULL,
[address] NVARCHAR (50) NULL,
[occupation] NCHAR (10) NULL,
[ltype] NCHAR (10) NULL,
[status] INT DEFAULT ((1)) NOT NULL,
[image] VARCHAR (50) NULL,
PRIMARY KEY CLUSTERED ([Id] ASC)
);
this is my table
Member 10523130 14-Feb-14 9:34am View    
no.the problem is in where condition but i dont know what else will be the code for where condition
Member 10523130 14-Feb-14 7:11am View    
no i am not getting any error but data is also not getting inserted.i have checked the values for inserting in database.and i was getting this problem before adding this image file upload.i have just added this field in insert query.and it is not working now.I am not getting where is the problem
Member 10523130 14-Feb-14 6:56am View    
datatype is varchar.and still it is giving me same problem