PHP Classes

File: SqlProc/noerror.sql

Recommend this page to a friend!
  Classes of Andras Toth   SQL Proc Func   SqlProc/noerror.sql   Download  
File: SqlProc/noerror.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: SQL Proc Func
Run stored procedures and queries read from files
Author: By
Last change: first release

v.0.0.1
Date: 2 years ago
Size: 254 bytes
 

Contents

Class file image Download
/** * This is a demo procedure using AdventureWorks2012 database * return without error code * @params id int */ IF OBJECT_ID('dbo.test') IS NOT NULL DROP TABLE dbo.test; SELECT * INTO dbo.test FROM HumanResources.Employee WHERE BusinessEntityID > ?;