What are the limitations to SQL Server Compact? (Or – how does one choose a database to use on MS platforms?)

I’m not sure about encryption, but you’ll probably find this link helpful: http://msdn.microsoft.com/en-us/library/ms171955.aspx As for the rest of it: “Text” and “auto_increment” remind me of Access. SQL Server Compact is supposed to be upgrade compatible to the server editions of SQL Server, in that queries and tables used in your compact database should transfer to … Read more

“the outputpath property is not set for this project” error

Usually this happens when the OutputPath property of the project file is blank. Project files are just MSBuild files. To edit in Visual Studio: Right click on the project, pick “Unload project” then right click on the unloaded project and select “Edit …”. Look for the Release-Versionincrement property group. It should look something like <PropertyGroup … Read more

How to set up unit testing for Visual Studio C++

This page may help, it reviews quite a few C++ unit test frameworks: CppUnit Boost.Test CppUnitLite NanoCppUnit Unit++ CxxTest Check out CPPUnitLite or CPPUnitLite2. CPPUnitLite was created by Michael Feathers, who originally ported Java’s JUnit to C++ as CPPUnit (CPPUnit tries mimic the development model of JUnit – but C++ lacks Java’s features [e.g. reflection] … Read more

how to use gettimeofday() or something equivalent with Visual Studio C++ 2008?

In UNIX the use of the timezone struct is obsolete. I don’t know why you use it. See http://linux.about.com/od/commands/l/blcmdl2_gettime.htm But if you want to use this structure to know about GMT(UTC) diffrence from your local time it will be next: tz_minuteswest is the real diffrence in minutes from GMT(UTC) and a tz_dsttime is a flag … Read more