English 中文(简体)
2010年视觉演播室:Fatal Error C1902
原标题:Visual Studio 2010: Fatal Error C1902 about "program database manager"

这里,MSDN的一些描述

Error Message program database manager mismatch; please check your installation A program database file (.pdb) was created using a newer version of mspdb80.dll than the one found while compiling.

This error usually indicates that mspdbsrv.exe or mspdbcore.dll are missing or have different versions from mspdb80.dll. Ensure matching versions of mspdbsrv.exe, mspdbcore.dll, and mspdb80.dll are installed on your system.

并且我想知道“方案数据库管理人”是什么? 与“mspdbsrv.exe、mspdbcore.dll和mspdb80.dll”的关系是什么?

最佳回答
fatal error C1902: Program database manager mismatch; 
please check your installation

如果您在<代码>D:Program 文件 视觉演播室10.0VCin 夹指会出现这一问题。 将它从双倍翻开,它不会 su。

问题回答

我甚至有一个完全相同的问题,那就是,在《奥卢斯法典》的SLN项目下,VS公司的解体和重新出现。

搜查后数小时 谷歌一认为,我已经找到了从其他论坛和场所积累的一些答案,这些答案本身并不奏效。

在VS2010年数据库的封存和收复之后,复制了以下档案:

mspdbsrv.exe
mspdb100.dll
mspdbcore.dll
mspdbst.dll

重建该项目。 你们将获得新的文件、文件和相关文件。

本文将视像素科/Common7/IDE目录的档案材料复制到VC/bin目录。

我尝试了以上所有的解决办法,但没有一人为我工作。

在我的案件中,Jenkins与NTAUTHORITYSYSTEM用户一起运营。 在将这一错误改为另一个用户之后,这一错误是固定的。 希望能帮助他人。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签