Re: [Classifier4j-devel] JDBCWordsDataSource SQLException?
Status: Beta
Brought to you by:
nicklothian
From: ASARI T. <as...@so...> - 2004-01-12 07:05:04
|
I sent that patch. And I'm sorry for late reply. I'm using MySQL4.1a on Linux(Red Hat). The case-sensitivity problem won't happen if you use Windows, I think. Please see the MySQL manual: http://www.mysql.com/documentation/mysql/bychapter/ manual_Reference.html#Name_case_sensitivity Sorry for my poor English. -- ASARI Takashi On 2004.1.2, at 07:44 AM, Nick Lothian wrote: > Another possibility is case-sensitivity. I did recieve a patch that > fixed an > alledged case-sensitivity problem, but I never found out what database > it > was for or any other details, so I haven't applied it. > > That patch modified the line > > ResultSet rs = dbm.getTables(null, null, "WORD_PROBABILITY", null); > > to > > ResultSet rs = dbm.getTables(null, null, "word_probability", null); > > so that might be worth trying. Please post back if you try it and it > works. > > Nick |