| Revision 6640,
534 bytes
checked in by kakinaka, 20 years ago
(diff) |
|
* empty log message *
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 4 | * |
|---|
| 5 | * http://www.lockon.co.jp/ |
|---|
| 6 | */ |
|---|
| 7 | require_once("../require.php"); |
|---|
| 8 | |
|---|
| 9 | $objQuery = new SC_Query(); |
|---|
| 10 | |
|---|
| 11 | $objQuery->begin(); |
|---|
| 12 | //$objQuery->query("START TRANSACTION"); |
|---|
| 13 | |
|---|
| 14 | //$objQuery->insert("test",array("test"=>"test")); |
|---|
| 15 | $objQuery->query("insert into dtb_order(customer_id,create_date,del_flg) values (1,now(),1)"); |
|---|
| 16 | |
|---|
| 17 | //$objQuery->rollback(); |
|---|
| 18 | $objQuery->commit(); |
|---|
| 19 | |
|---|
| 20 | //------------------------------------------------------------------------------------------------------- |
|---|
| 21 | |
|---|
| 22 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.