Posts
The Techie Crunch
Cancel

MySQL Data Access API Development Using Express.JS, Node.JS

In this article, we are looking into the introduction of Node.JS and Express.JS and then, I am going to create a simple MySQL data access API using Express.js, NodeJS. As we all know, Node.JS is t...

Pass data to ASP.NET Web Service (ASMX) from Cross-Origin

Pass data to ASP.NET Web Service (ASMX) from Cross-Origin In this blog, we are going to create “Hello World” ASP.Net Web Service (ASMX) with parameter and allow request from cross-origin. Now her...

MySQL - Good Habits

In this article, we are going to learn few good habits that we can consider important aspect while work with MySQL to improve performance & troubleshoot as following below: 1 - Do not use stor...

SQL Server Database Permission Scripts

SQL Server Database Permission Scripts 1 - Script to get list of all database name and its user in SQL Server 1 2 3 4 5 6 7 8 USE MASTER GO SELECT SL.dbname AS 'Database Name',SL.name AS '...