--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- Customer Service Kiosk ini_schemas -- -- Project: Customer Service Kiosk -- Design: Un-Managed Devices -- Date: 20-July-2007 -- Where: Pharos Systems Ltd -- Who: Frank Caico -- Version: 1.0 -- -- Description: -- Add and update Customer Service Kiosk schema Row in ini_schemas -- -- Columns: -- ini_schema_id PK to ini_schemas table -- ini_schema_name Unique schema name, identifies the type of EDI terminal -- ini_schema XML schema for ini configuration data -- -- Warning: -- This software is property of Pharos Systems Inc. -- Unauthorized use or duplication of this software is strictly prohibited. -- Authorized users are subject to the following restrictions: -- * Neither the author, their corporation, nor Pharos Systems Inc. -- is responsible for any consequences of the use of this software. -- * The origin of this software must not be misrepresented either by -- explicit claim or by omission. -- * Altered versions of this software must be plainly marked as such. -- * This notice may not be removed or altered. --~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ if not exists (select ini_schema_id from ini_schemas where ini_schema_id = 203) begin insert ini_schemas values (203, 'Customer Service Kiosk', '') end update ini_schemas set ini_schema = '
Customer Service Kiosk US Default 1
' where ini_schema_id = 203 go -- update ini_schemas set ini_schema = '' where ini_schema_id = 901 -- delete from ini_schemas where ini_schema_id = 901 -- select * from ini_schemas