Click here to Skip to main content
15,881,281 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hello Dear,
This is serious problem will create when i want to insert a data into the table.. ..error message is following.. ..

"Could not create instance of the Class. May be wrong class name/namespace is defined of Data Provider is not found."

Please Please help me.. ..it very urgent.. ..i am waiting.plz

Thanks
Emon
Posted
Updated 26-Jul-10 1:15am
v2
Comments
nagendrathecoder 26-Jul-10 7:03am    
Reason for my vote of 1
Less informative, highly demanding.
Sandeep Mewara 26-Jul-10 10:46am    
Add the code snippet that is related to this error. Error looks like self explanatory though.
Dave Kreskowiak 26-Jul-10 11:08am    
Reason for my vote of 1
You've got no code snippet showing what code is throwing the exception.

And saying that this is urgent doesn't get you anything except ignored.
thatraja 26-Jul-10 13:33pm    
Need more details....so post the error relevant code

The error you describe stated that:

There is a problem between the chair and the screen.


Be specific with your question, give us more detail and we may be able to help.
 
Share this answer
 
Comments
skokeh 12-Nov-12 7:40am    
HaHaHa :)
The problem is basically that you have no idea what you're doing, and you don't even know enough about programming to know that we need to see code in order to tell you what you did wrong.

The other obvious issue is that your inability to write code, does not constitute and urgent problem for us. If you're sufficiently incapable of basic research to require our help on a problem like this, then you need to accept that you have to wait until we feel like giving you free help, we don't owe you anything.
 
Share this answer
 
first provide your query, then ask for help. As there is no clue about the problem.
 
Share this answer
 
SQL
CREATE TABLE [dbo].[Module](
    [ModuleID] [nchar](2) NOT NULL,
    [ModuleName] [nvarchar](50) NOT NULL,
    [ModuleDescription] [ntext] NULL,
    [SetDate] [datetime] NULL,
    [UserName] [nvarchar](20) NULL,
 CONSTRAINT [PK_Wing] PRIMARY KEY CLUSTERED
(
    [ModuleID] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

DROP TABLE userlist

CREATE TABLE [dbo].[UserList](
    [UsrUserID] [varchar](20) NOT NULL,
    [UsrName] [varchar](35) NULL,
    [UsrPassword] [varchar](500) NOT NULL,
    [UsrModuleID] [varchar](50) NOT NULL,
    [UsrEnabledYN] [bit] NOT NULL,
    [UsrRemarks] [text] NULL,
    [UsrCreateDate] [datetime] NULL,
    [SetDate] [datetime] NOT NULL,
    [UserName] [varchar](20) NULL,
    [PwdChangedYN] [bit] NOT NULL,
    [UsrPIN] [varchar](8) NULL,
    [usrClassID] [tinyint] NOT NULL,
 CONSTRAINT [PK_UserList] PRIMARY KEY NONCLUSTERED
(
    [UsrUserID] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO

ALTER TABLE [dbo].[UserList] ADD  CONSTRAINT [DF_UserList_UsrEnabledYN]  DEFAULT ((1)) FOR [UsrEnabledYN]
GO

ALTER TABLE [dbo].[UserList] ADD  CONSTRAINT [DF_UserList_SetDate]  DEFAULT (getdate()) FOR [SetDate]
GO

ALTER TABLE [dbo].[UserList] ADD  CONSTRAINT [DF_UserList_PasswordChangedYN]  DEFAULT ((0)) FOR [PwdChangedYN]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900