Index: branches/feature-module-update/data/class/SC_Query.php
===================================================================
--- branches/feature-module-update/data/class/SC_Query.php	(revision 15532)
+++ branches/feature-module-update/data/class/SC_Query.php	(revision 16282)
@@ -196,4 +196,7 @@
 			if(eregi("^Now\(\)$", $val)) {
 				$strval .= 'Now(),';
+			// 先頭に~があるとプレースホルダーしない。
+			} else if(ereg("^~", $val)) {
+				$strval .= ereg_replace("^~", "", $val);
 			} else {
 				$strval .= '?,';
@@ -266,4 +269,7 @@
 			if(eregi("^Now\(\)$", $val)) {
 				$strcol .= $key . '= Now(),';
+			// 先頭に~があるとプレースホルダーしない。
+			} else if(ereg("^~", $val)) {
+				$strcol .= $key . "=" . ereg_replace("^~", "", $val) . ",";
 			} else {
 				$strcol .= $key . '= ?,';
