Dear All,
I am user of H2 2019 -03-13.
I added lucene fulltext search to my windows 10 64 environtment in the variable CLASSPATH with contain this file: lucene-core-8.0.0.jar, lucene-analyzers-common-8.0.0.jar, and lucene-queryparser-8.0.0.jar.
The Command to initilize Lucene Fultext in my H2 Console are succeded to compile.
command:
CREATE ALIAS IF NOT EXISTS FTL_INIT FOR "org.h2.fulltext.FullTextLucene.init";
CALL FTL_INIT();
I was created the table and fill it with my data.
command:
CREATE TABLE TABLE_NAME(ID INT PRIMARY KEY, NAME VARCHAR);
INSERT INTO TABLE_NAME VALUES(1, 'Hello World');
But I have an error message when I create the index with this command:
CALL FTL_CREATE_INDEX('PUBLIC', 'TABLE_NAME', NULL);
This is the error message:
What should I do to solve this problem?
Thanks For Attention,
Rgds,
Satt