EVOLUTION-MANAGER
Edit File: update_last_insert_grn_id.test
# Copyright(C) 2010 Tetsuro IKEDA # Copyright(C) 2013 Kouhei Sutou <kou@clear-code.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA --source include/not_embedded.inc --source ../../include/mroonga/have_mroonga.inc --source ../../include/mroonga/load_mroonga_functions.inc --disable_warnings drop table if exists memos; --enable_warnings create table memos ( _id int, content varchar(255), unique key (_id) using hash ); insert into memos values (null, "今夜はさんま。"); insert into memos values (null, "明日はgroongaをアップデート。"); insert into memos values (null, "帰りにおだんご。"); insert into memos values (null, "金曜日は肉の日。"); select * from memos; insert into memos values (null, "冷蔵庫に牛乳が残り1本。"); select last_insert_grn_id(); update memos set content = "冷蔵庫に牛乳はまだたくさんある。" where _id = last_insert_grn_id(); select * from memos; drop table memos; --source ../../include/mroonga/unload_mroonga_functions.inc --source ../../include/mroonga/have_mroonga_deinit.inc