Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use the matchinfo function of sqlite with its second parameter, but it is throwing errors. The Java wrapper I am using the Xerial wrapper. I am using this query to test matchinfo.

SELECT matchinfo(search, 'pcx') AS 'test' FROM search WHERE search MATCH 'a search query'

it throws this error,

SQL error or missing database (wrong number of arguments to function matchinfo()

Any idea why this is happening? this website says the matchinfo has an optional second parameter, and I am using fts4 to do this.

Thanks

share|improve this question
If it is any comfort to you, I'm getting the same error when using the example from the matchinfo documentation; I'm using the sqlite3 CLI tool BTW. On the upside, 'pcx' is supposed to be the default. – mu is too short Jun 11 '11 at 3:25
Also, slightly off topic, but matchinfo returns a blob of unsigned integers in the form of a byte array. I can't remember how to convert the byte array into an array of ints (longs since unsigned) in java. – Rick Button Jun 11 '11 at 3:56
Once again off topic, but if someone wants to get access to the matchinfo data using Xerial, wrap your function in the Function class, and use this method gist.github.com/1020244 – Rick Button Jun 11 '11 at 4:19

1 Answer

the sqlite-jdbc-3.7.15-SNAPSHOT.jar from https://bitbucket.org/xerial/sqlite-jdbc/downloads fixes your problem.

I did not find any version in Maven. So you have to download the jar manually.

Greets,

Jan

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.