diff --git a/product/ERP5/skins/erp5_core/SQLDict_createMessageTable.zsql b/product/ERP5/skins/erp5_core/SQLDict_createMessageTable.zsql deleted file mode 100755 index f6f7920d2ee45cc2be67000d4ee4875bb3b0fcb9..0000000000000000000000000000000000000000 --- a/product/ERP5/skins/erp5_core/SQLDict_createMessageTable.zsql +++ /dev/null @@ -1,21 +0,0 @@ -<dtml-comment> -title: -connection_id:MySQL -max_rows:1000 -max_cache:100 -cache_time:0 -class_name: -class_file: -</dtml-comment> -<params></params> -# Host: -# Database: test -# Table: 'stock' -# -CREATE TABLE `message` ( - `path` VARCHAR(255), - `method_id` VARCHAR(40), - `message` BLOB, - KEY `path` (`path`), - KEY `method_id` (`method_id`), -) TYPE = InnoDB; \ No newline at end of file diff --git a/product/ERP5/skins/erp5_core/SQLDict_delMessage.zsql b/product/ERP5/skins/erp5_core/SQLDict_delMessage.zsql deleted file mode 100755 index b75a63d24674dd163631a2251bcbb3dbbc2bb2ae..0000000000000000000000000000000000000000 --- a/product/ERP5/skins/erp5_core/SQLDict_delMessage.zsql +++ /dev/null @@ -1,17 +0,0 @@ -<dtml-comment> -title: -connection_id:MySQL -max_rows:1000 -max_cache:100 -cache_time:0 -class_name: -class_file: -</dtml-comment> -<params>path -method_id</params> -DELETE FROM - message -WHERE - path = <dtml-sqlvar path type="string"> -<dtml-if method_id>AND method_id = <dtml-sqlvar method_id type="string"></dtml-if> - \ No newline at end of file diff --git a/product/ERP5/skins/erp5_core/SQLDict_hasMessage.zsql b/product/ERP5/skins/erp5_core/SQLDict_hasMessage.zsql deleted file mode 100755 index b90d31341145f124d62fe09db475492339e479fa..0000000000000000000000000000000000000000 --- a/product/ERP5/skins/erp5_core/SQLDict_hasMessage.zsql +++ /dev/null @@ -1,19 +0,0 @@ -<dtml-comment> -title: -connection_id:MySQL -max_rows:1 -max_cache:100 -cache_time:1 -class_name: -class_file: -</dtml-comment> -<params>path -method_id</params> -SELECT count(path) as message_count FROM - message -<dtml-if "path or method_id"> -WHERE -<dtml-if path> path = <dtml-sqlvar path type="string"></dtml-if> -<dtml-if method_id>AND method_id = <dtml-sqlvar method_id type="string"></dtml-if> -</dtml-if> - \ No newline at end of file diff --git a/product/ERP5/skins/erp5_core/SQLDict_readMessage.zsql b/product/ERP5/skins/erp5_core/SQLDict_readMessage.zsql deleted file mode 100755 index 09d5f2ead0b59c3d37d33ce4e93f6b08281d8ce8..0000000000000000000000000000000000000000 --- a/product/ERP5/skins/erp5_core/SQLDict_readMessage.zsql +++ /dev/null @@ -1,12 +0,0 @@ -<dtml-comment> -title: -connection_id:MySQL -max_rows:1 -max_cache:0 -cache_time:0 -class_name: -class_file: -</dtml-comment> -<params></params> -SELECT * FROM - message \ No newline at end of file diff --git a/product/ERP5/skins/erp5_core/SQLDict_readMessageList.zsql b/product/ERP5/skins/erp5_core/SQLDict_readMessageList.zsql deleted file mode 100755 index 8ba47984dc48d6d4996abd20a9e93b41d2db274f..0000000000000000000000000000000000000000 --- a/product/ERP5/skins/erp5_core/SQLDict_readMessageList.zsql +++ /dev/null @@ -1,19 +0,0 @@ -<dtml-comment> -title: -connection_id:MySQL -max_rows:1000 -max_cache:0 -cache_time:0 -class_name: -class_file: -</dtml-comment> -<params>path -method_id</params> -SELECT * FROM - message -<dtml-if "path or method_id"> -WHERE -<dtml-if path> path = <dtml-sqlvar path type="string"></dtml-if> -<dtml-if method_id>AND method_id = <dtml-sqlvar method_id type="string"></dtml-if> -</dtml-if> - \ No newline at end of file diff --git a/product/ERP5/skins/erp5_core/SQLDict_writeMessage.zsql b/product/ERP5/skins/erp5_core/SQLDict_writeMessage.zsql deleted file mode 100755 index fe0a3978167f8fc6a268b30646a3d67ed714bd62..0000000000000000000000000000000000000000 --- a/product/ERP5/skins/erp5_core/SQLDict_writeMessage.zsql +++ /dev/null @@ -1,15 +0,0 @@ -<dtml-comment> -title: -connection_id:MySQL -max_rows:1000 -max_cache:100 -cache_time:0 -class_name: -class_file: -</dtml-comment> -<params>path -method_id -message</params> -INSERT INTO message -VALUES - (<dtml-sqlvar path type="string">,<dtml-sqlvar method_id type="string">,<dtml-sqlvar message type="string">); \ No newline at end of file