Month May 2018

Insert default value SQL primary key

I have a table in Microsoft SQL Server where insert or updates isn’t possible. Table is only responsible to increment a unique id. The table looks like this: CREATE TABLE [dbo].[CustomerOrderNumbers]( [customerOrderNumberId] [int] IDENTITY(1,1) NOT NULL, [createdOn] [datetime] NOT NULL,…

Cordova build APK – Package damaged

I tried to build an APK (Android) in Cordova, build is successful so far so good! When transferring the file to my mobile I got error message during install “Installation is not possible, package is damaged”. I created a new…