{{theTime}}

Search This Blog

Total Pageviews

Java Script GET request Sample Code

fetch('https://api.public.com/api')
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));

No comments:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...