I dont know. everything seems to be resolved, i have a stored procedure:ALTER PROCEDURE dbo.InsertGenLedgerData ( @Date date, @Description nvarchar(50), @Debit float, @Credit float, @CategoryID int ) ASBEGININSERT INTO dbo.GeneralLedger (TransDate,TransDescription,CategoryID,Debit,Credit) VALUES (@Date,@Description, @CategoryID,@Debit,@Credit); COMMIT TRANSACTION; END
i add data in the windows form, and then it executes the stored procedure and gives the invalid object dbo.GeneralLedger exception :S i have no idea about it