addisonmiller / inverted-index

Automatically exported from code.google.com/p/inverted-index
Apache License 2.0
0 stars 0 forks source link

/*

. sql/tables.sql . sql/sp_wordID.sql . sql/sp_wordID_withNew.sql . sql/sp_classID.sql . sql/sp_nextWord.sql . sql/sp_parseWords.sql . sql/sp_sanitizeWord.sql . sql/sp_indexString.sql . sql/sp_buildSearchParts.sql . sql/sp_search.sql . sql/sp_searchBasic.sql . sql/sp_searchPhrase.sql


-- and the sample data, which shows how to set up the correct triggers


. tests/setup.sql . tests/triggers.sql . tests/data.sql


-- Then try out the searching procedures:


CALL searchBasic(classID('article'), 'night time');

CALL searchPhrase(classID('article.body'), 'best of times');


-- If you want to control the content output, then use the main 'search' -- procedure directly:


CALL search(classID('article.body'), 'best of times', 'phrase', 'article', 'article_id', 'title,body');

CALL search(classID('article.body'), 'best of times', 'phrase', NULL, NULL, NULL);


-- or run some of the "manual" SQL queries instead:


. tests/query1.sql

. tests/query2.sql

. tests/query3.sql

. tests/query4.sql


-- The SQL the stored procedures used is preserved in @_sql, so you can -- see how the query works:


CALL searchPhrase(classID('article'), 'best of times'); SELECT @_sql;


-- The components of the query are also preserved, so you can construct -- more complex queries. You can prevent this by setting -- @_suppressGlobals = TRUE.


SELECT CONCAT('SELECT ',@_outputFormat, ' FROM ',@_froms, ' WHERE ',@_wheres, ' GROUP BY ',@_groupBy, ' ORDER BY d.title') AS sql_from_parts;


-- If you set @_noExecute, then the query isn't actually executed, so you -- can construct your own custom query.


SET @_noExecute = TRUE; CALL searchPhrase(classID('article'), 'best of times'); SET @_noExecute = FALSE;


-- These functions can come in handy when using PREPARE and EXECUTE. -- tests/query0.sql demonstrates this technique.


. tests/query0.sql


-- If a word in a search string isn't found, then the result format is -- different.


CALL searchPhrase(classID('article'), 'sadkhfasiuodyfaiusdhfaids');

/*