1. Storing search criteria in a database stackoverflow.comI am working on an enhancement to a Flex dashboard that will allow the users to save searches. I'm using BlazeDS and Java/Spring/SpringJdbc on the server side. My question is this: how ... | |
2. I need to search for a "customer" in a db, what would be a good design here? stackoverflow.comWe're a couple of students trying to implement a design to search for customer-information in a database. When the GUI-class is asking for any customer with the surname "Jensen", would a ... | |
3. Lucene Search Problem stackoverflow.comI have built an index on my database rows (Each row as a document) which are of unicode type in MySQL(i.e. Charset: utf8 and Collation: utf8-bin). But When I search any ... | |
4. Enabling the search engines to index data from web application stackoverflow.comI am building a social web application using Java and Cassandra DB. I want some of the data from my database to be visible to search engines. Since my application is ... | |
5. can Lucene be used to search inside db? stackoverflow.comCan we use Lucene to search text stored in DB? I saw this article that shows how to use it for normal articles stored as files http://javatechniques.com/blog/lucene-in-memory-text-search-example/ Can someone suggest? | |
6. Search mails in database stackoverflow.comI want to implement searching of mails in my mail system. I have used simple procedure to search the mails in the database. I want to know the error in the ... | |
7. Dynamic data storage with search and mapping for java project stackoverflow.comI'm looking for good dynamic data storage mainly based on JAVA, or to have ability to be really easy used by JAVA. Main problem in my project is in fast that ... | |
8. Searching through an access database bytes.comI've created a GUI for a hospital visitor system to allow visitors to find patients based on surname. I've also made a table in access with patient names, surnames, date of ... | |
9. Making the search in database case insensitive coderanch.comThanks for reply but the way you suggested is very costly in terms of performance as I hav to retrive each row from database for converting it into an uniform case. can anyone suggest me another way?? is there any provision in SQL to do the same thing as I am using SELECT * FROM TABLE1 WHERE KEYWORDS LIKE '%keyword%'. thanks ... | |
10. Database searching coderanch.comI need to search a field in DB that contains the word user typped in. However, I was not successful. It returns less records than I expect. The following is my SQL to do the search: psSql = dbConn.prepareStatement( "SELECT id, email " + " FROM user " + "WHERE email like (?) " + " OR email like (?) " ... | |
11. DB search, order by, and i18n coderanch.comHi Hope somone has done something similar before Let's say you have large table where one of the columns describe a type. Let's say the type is fruit. every fruit type is assigned an integer(apple =1, orange=2) and so on. Assume your application allows to filter and sort on the data in the table, where one of the columns you can ... | |
12. searching database coderanch.com | |
13. search in database coderanch.com | |
14. search engine to search both at database and web application level coderanch.comHi , I have tried to use Nutch but it is only web search and does not include any search at database level. And following error appear while using it /**********************************/ Nutch search engine(nutch-0.7.2). After install Nutch and Tomcat, I tried to crawl three url one of them is my web application on jboss. using command as: nutch crawl urls -dir ... | |
15. How to search a db? coderanch.comHere is the JSP page: <%@ page contentType="text/html; charset=iso-8859-1" %> <%@ page import="java.net.*" %>
|