Humble Trader

Saturday, September 23, 2006

Get HTML - html_special_entity_codes_d.sql

-- ------------------------------------------------------------------------- --
-- --
-- Title: html_special_entity_codes_d.sql --
-- Author: Steve Roach --
-- Date: 23-SEP-2006 --
-- Version: 01.00 --
-- --
-- Description: Create seed data for table HTML_SPECIAL_ENTITY_CODES. --
-- --
-- History: --
-- --
-- Date Ver Author Description --
-- --------- ----- ------ -------------------------------------------------- --
-- 23-SEP-06 01.00 SRR First release --
-- --
-- ------------------------------------------------------------------------- --

DELETE FROM html_special_entity_codes
/

COMMIT
/

INSERT INTO html_special_entity_codes
(
special_entity_code
,character
,description
)
VALUES
(
'AMP'
,'&'
,'AMP maps to ''&'''
)
/

INSERT INTO html_special_entity_codes
(
special_entity_code
,character
,description
)
VALUES
(
'#39'
,CHR(39)
,'#39 maps to ''`'''
)
/

COMMIT
/

0 Comments:

Post a Comment

<< Home