search for: benjaminarai

Displaying 15 results from an estimated 15 matches for "benjaminarai".

2006 Jul 28
0
Re: MS RDO database bug
...easier to > > track the progress of the bug and hopefully get it fixed as > soon as > > possible. > > > > http://bugs.winehq.org/ > > > > -- > > Benjamin Arai > > http://www.benjaminarai.com > -- > Marcelo A. Luda > Direcci?n de Sistemas > Municipio de Mor?n > Tel: 4489-7855/7792 > > > > > -- > Benjamin Arai > http://www.benjaminarai.com
2008 Jan 07
1
Selecting maximum value from a field
Hello, I have a field which contains integer values. How do I obtain the maximum value of the column? Benjamin
2008 Jan 12
1
Native release for windows 0.11.6?
Hello, Is there going to be a native windows release for 0.11.6? Alternatively, if a new version is going to be released soon, will there be a release for windows of that? Thanks! Benjamin
2006 Jun 11
47
Ruby on Rails and CakePHP Comparison
>From a development standpoint, what are the features that make Ruby on Rails a better choice compared to CakePHP? -- Posted via http://www.ruby-forum.com/.
2006 Jun 18
1
PostgreSQL Database Views with scaffold
Is there way to get the scaffold command to work with PostgreSQL database views? -- Posted via http://www.ruby-forum.com/.
2007 Nov 24
0
Getting a Lucene.net index readable by Ferret
Hi, What would it take to get the a Lucene.net index readable by Ferret? I know that there has been discussion on this before but I am trying to figure the actual amount of work (cost) would be required to get this done. Any help would be greatly appreciated. Benjamin
2008 Jan 16
2
Escaping special characters :, (, ), [, ], {, }, !, +, ", ~, ^, -, |, <, >, =, *, ?, \
Hello, I am trying to escape words for searching i.e., "hello". The key here is that the two L''s on "hello" are actually vertical bars. Is there a special function in Ferret or anywhere for that matter that will do the escaping of the Ferret special characters? Thanks in advance, Benjamin
2008 Jan 16
0
QueryParser clean_string ?
Hello, What happened to "clean_string" in QueryParser? Benjamin
2008 Jan 22
0
GROUP BY functionality for Ferret
Hello, Is there any way to perform GROUP BY operations on specific fields, namely, a date field? Benjamin
2008 Jan 15
0
Best way to build a query?
Hello, I am currently taking various users parameters and build an FQL query. For example, I I was given: query = "indian reservation" date: 20050101 to 20070303 location = USA Human version: Get all of the documents containing "indian reservation" which were published between 20050101 to 20070303 in the USA FQL: +content:(indian reservation) +date:{20050101 20070303}
2008 Mar 02
0
Compiling ferret trunk on OSX Leopard?
Does ferret trunk compile on OSX Leopard? Benjamin
2007 Dec 20
1
indexing tuples (example: "frog" => 123) as opposed to words
Hi, I need to map words in a document back to there original word id''s in my database. For example, if I had the sentence "I eat food" and I was searching for "food" I would obviously get the document back as a result. For my particular problem I need to not only get the document id but also the id of the match. Suppose my original sentence was actually
2007 Dec 25
1
Does sort work for strings work?
Hi, I am trying to get sorting working. I have had success with numbers but when I try to sort my string fields nothing happens. I am using the following code: options = {} s = Search::SortField.new(''object_title'', :reverse => false) options[:sort] = s @index.search_each("my query",options) do |id, score| puts "-->Document #{id} found with a
2006 Jun 18
5
User/Password Management: Mapping items to inidividual users
Is there a good plugin that does per page authentication management? For example, I want to allow users to create pages and share them with specific users, all users, or none at all on a per page basis. Benjamin -- Posted via http://www.ruby-forum.com/.
2008 Jan 11
3
Date range queries return zero results
Hello, I am having trouble getting data ranges to work correctly. I am using the following command to load the db: index << {:title => row[7].to_i, :date => Date.strptime(row[3], ''%Y-%m-%d''), :page_id => row[5].to_i, :page => row[6].to_i, :content_type => row[1].to_i,