Internationalization in Angular2

We all know that internationalization is important when it comes to bigger apps, or just the ones that are simply used across countries. Angular itself comes with very poor i18n support, which is why the community has built their own solutions to extend the framework’s functionalities to their needs. However, there’s finally a first-class solution…

By admin_manish April 14, 2016 3

Cannot re-export name that is not defined in the module ‘promise.d.ts’

TypeScript seems to have caused problems on the first line of promise.d.ts complaining that Promise cannot be exported as it is not defined in this file: ERROR in [default] /path/to/project/node_modules/angular2/src/facade/promise.d.ts:1:9 Cannot re-export name that is not defined in the module. I solved this problem by adding following line of code at line number 1 in…

By admin_manish April 8, 2016 1

DML statements in SQL server functions

We can not write DML statements in SQL functions. Functions have Only READ-ONLY database access. If DML operations would be allowed in functions, then functions would be pretty similar to stored procedures. The way it is, a stored procedure can use a function, but not vice versa. Therefore, functions increase the “power” of stored procedures,…

By Manish Kumar December 23, 2015 0