[前][次][番号順一覧][スレッド一覧]

mysql:9426

From: <yasuyuki@xxxxxxxxxx>
Date: Tue, 25 May 2004 19:06:49 +0900
Subject: [mysql 09426] Re: mysqldへのOniguruma組み込み(mysql-4.1.2-alpha-nightly-20040519)

えんどう やすゆき です。

> http://epx.timedia.co.jp/cgi-bin/viewcvs/

mysql-4.1.1-alpha-nightly-20040523 が出ていたのでこれに組み込んでみました。

やったこと:
http://openspace.timedia.co.jp/~yasuyuki/wiliki/wiliki.cgi?Oniguruma-mysqld&l=en

> # まだデバッグしてない(^^;)ので明日からデバッグしてみます。

テストしてみました。微妙に挙動が不明ですがいちおう動いています。

 /usr/local/mysql/bin/mysql --default-character-set=ujis test

[データの準備]

create table test (
  id integer,
  name varchar(255) character set ujis
);

insert into test (id, name) values ( 10, 'あ');
insert into test (id, name) values ( 20, 'い');
insert into test (id, name) values ( 30, 'う');
insert into test (id, name) values ( 40, 'え');
insert into test (id, name) values ( 50, 'お');
insert into test (id, name) values ( 60, 'か');
insert into test (id, name) values ( 70, 'き');
insert into test (id, name) values ( 80, 'く');
insert into test (id, name) values ( 90, 'け');
insert into test (id, name) values (100, 'こ');
insert into test (id, name) values (110, 'さ');
insert into test (id, name) values (120, 'し');
insert into test (id, name) values (130, 'す');
insert into test (id, name) values (140, 'せ');
insert into test (id, name) values (150, 'そ');

[テスト]

mysql> select * from test where name regexp "^['あ']";
+------+------+
| id   | name |
+------+------+
|   10 | あ   |
+------+------+
1 row in set (0.01 sec)

mysql> select * from test where name regexp "^[あ-か]";
+------+------+
| id   | name |
+------+------+
|   10 | あ   |
|   20 | い   |
|   30 | う   |
|   40 | え   |
|   50 | お   |
|   60 | か   |
+------+------+
6 rows in set (0.00 sec)

-- 
ENDO Yasuyuki <yasuyuki@xxxxxxxxxx>
http://www.kahua.org/
http://www.timedia.co.jp/


[前][次][番号順一覧][スレッド一覧]

      9419 2004-05-24 20:31 [<yasuyuki@xxxxxxxxxx] mysqldへのOniguruma組み込み(mysql-4.1.2-alpha-nightly-20040519)
->    9426 2004-05-25 19:06 ┗[<yasuyuki@xxxxxxxxxx]                                       
      9427 2004-05-25 19:10  ┗[<yasuyuki@xxxxxxxxxx]