Index: /branches/dev/html/test/uehara/test.php
===================================================================
--- /branches/dev/html/test/uehara/test.php	(revision 12066)
+++ /branches/dev/html/test/uehara/test.php	(revision 12072)
@@ -1,18 +1,10 @@
 <?php
-require_once("../../require.php");
 
-echo "test!!";
+test('エコー');
 
-$objQuery = new SC_Query();
+function test($echo) {
+	echo $echo;
+}
 
-$objQuery->begin();
-$arrCustomerMail = $objQuery->getAll("
-UPDATE dtb_customer
-SET mailmaga_flg = (
-SELECT mail_flag
-FROM dtb_customer_mail
-WHERE dtb_customer.email = dtb_customer_mail.email
-)");
-$objQuery->commit();
 
 ?>
