How to do full text search in mobile apps?

Hi,
I want to be able to use the FTS module in sqlite to do leverage the powerful full text capability in it. But I was sad to learn that module are disabled in AIR (Has anybody gotten FTS module to work in AIR?)
Is there any way I can use the FTS module with SQLite. Android native developers use this all the time so I think not having this is a serious limitation for text based apps.
My alternatives right now are to:
Write my own indexer and scorer (lots of work)
Do full text search on the server side (breaks offline capability)
I hate both options. I am leaning toward righting my own indexer but what do you guys suggest I do?

I've got nearly the same concern. I want to add full text search on a mobile and desktop application, without any server.
I read in archived discussion that the FTS support was already considered before air 2.0.
Will we see it soon?

Similar Messages

  • How to Enable Full text search in UCM with Oracle 10g

    Hi,
    Can you please guide me on how to enable full text search in UCM after I have installed it. My database is Oracle 10g. It would be great if you could guide me through the steps since I am very new to this product.
    Regards
    Ashish

    Hi
    Are you sure that your indexer is finishing without any errors? Check activeindex.hda under \search directory to see what is the variable set for activeindex variable? If Oracle Text is the indexer search enabled then the variable activeindex should either OTS1 or OTS2. If anything else then you have indexer problems that is not indexing documents.
    Check the CS log file to see if indexer errors are shown there. If yes, then put it over here so that we can analyse it.
    Hope it helps
    Thanks
    Srinath

  • How to enable Full text search feature in Azure SQL DB - Web Edition

    I have created an instance of Azure SQL DB web edition (basic), using the BizSpark a/c, for one of my global search feature, I need to enable/install full-text search , I don't find this option in Azure SQL DB web edition that I installed , would
    appreciate any help on this.

    Unfortunately full text search is not supported in Azure SQL DB.  
    Cotega - Azure SQL DB Monitoring, Notification and Scheduling service

  • Full text search in mobile sales?

    Hi!
    CRM 4.0, Mobile sales, business partners, ...
    I've to include a fulltextsearch in the search tile capsearch2. The search should look into the longtext-notes created for most partners. I think i need an enhanced bscapgen/capgen_query ... the real longtext seems to be in the field notes of bonote... a binary field... and i don't konow how to work with it in our mobile sales app
    Are there any docs online how to work with these binary fieldcontent?
    Thanks a lot for your help!
    Best regards,
    Ingo

    One thing to note...
    Doing a query like:
    <i>select note, * from smonote where note like '%test%'</i>
    It will work, but it is not utilizing the FullText indexing...it's just doing a standard SQL search.
    A full text query would look something like:
    <b>select note, * from smonote where contains(note, ' "test" ')</b>
    AND...the table SMONOTE must have a FullText index setup for it.
    We did something similar with our SMOMAKT (material description) table on field MAKTX.

  • Give me one query how to use full text search

    fulltext catlog ,populating fulltext index one example
    jitendra

    fulltext catlog ,populating fulltext index one example
    jitendra
    Hello,
    Please take a look at the following example:
    CREATE DATABASE FULL_SEARCH_TEST
    USE [FULL_SEARCH_TEST]
    Create Table FullText_Search
    Id Int Primary Key Identity(1,1),
    Title Nvarchar(50)
    GO
    INSERT INTO FullText_Search VALUES(N'España')
    SELECT * FROM FullText_Search
    GO
    CREATE FULLTEXT CATALOG FTSearch
    GO
    --Show all constraint names
    SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
    CREATE FULLTEXT INDEX ON FullText_Search
    (Title) KEY INDEX PK__FullText__3214EC07558F517A
    ON FTSearch;
    ALTER FULLTEXT CATALOG FTSearch
    REBUILD WITH ACCENT_SENSITIVITY = OFF
    SELECT FULLTEXTCATALOGPROPERTY('FTSearch', 'accentsensitivity');
    SELECT * from FullText_Search where contains(Title,'"España"')
    GO
    SELECT * from FullText_Search where contains(Title,'"espana"')
    Regards,
    Elvis Long
    TechNet Community Support

  • Document Management / Full Text Search in Projects & SolMan Directory

    Hello experts!
    I want to implement Full Text Search in my SolMan and therefore need your help.
    I have installed Trex 7.10 and am already able to search within my Solution Database (Problems/Solutions).
    Now I want to be able to search within all documents in my SolMan Installation - e.g. Roadmaps, SAP Scenario Descriptions or my own uploaded documents.
    In the IMG I already found the section Document Management but I cannot get the needed RFCs (IMSDEFAULT and IMSDEFAULT_REG) working.
    There is already a RFC called IMSDEFAULT, which was created during the installation of Trex and runs the
    Registered Server-Program: Trex_SOT_20080327090311
    I tried to configure my RFCs according to the IMG but, as I said, cannot manage to get them working.
    I hope anybody has an idea or an guide on how to implement Full Text Search!
    Please be so kind and provide help - thanks in advance!
    Best regards
    Gerold

    Gerold,
    I am running into the same issues because we want to do full text search on project documentation within Solution Manager. The default RFC connections IMSDEFAULT_REG and IMSDEFAULT do not work with the standard settings.
    We created one index for IWBSOLAR so maybe I also need to check IWBPROJ in SKPR06 for project documentation and create a new index for this one ?
    The indexing for IWBSOLAR now fails although there seem to be over 6000 documents marked but none are put in the index. After indexing there is a list of the documents all with code 6401 but cannot find any where what this code means. It seems to be succesful as all entries are green.
    Any help/suggestions on this topice would be greatly appreciated.

  • How to Use FULL TEXT Indexing Search on file names with brackets

    I would like to use a FULL Text Seach query to find Files on a windows file system
    The Problem is when the case comes up where there is a parentheses"()" in the file name. This example was created from a file copy being pasted in the same folder location as the original a few times.
    Here is my code:
    DECLARE
    @SearchWord VARCHAR(50)
    SET @SearchWord = '"KAP1556PP_P01(2).jpg"'
    SELECT [FileName], [FilePath] FROM [dbo].[tblLegalPlan] WHERE CONTAINS(*, @SearchWord)
    When I use Double quotes for the @Searchword I recieve no results.
    SET
    @SearchWord = '"KAP1556PP_P01(2).jpg"'
    When I remove the Double  Quotes for the @Searchword I recieve an error message:
    SET
    @SearchWord = 'KAP1556PP_P01(2).jpg'
    Msg 7630, Level 15, State 2, Line 8
    Syntax error near '(' in the full-text search condition 'KAP1556PP_P01(2).jpg'.
    When I search for files containing TEXT up to the bracket i Get undesrired results obviously:
    SET
    @SearchWord = '"KAP1556PP_P01*"'
    Results
    FileName FilePath
    KAP1556PP_P01(1).jpg BC\EPP\KAP
    KAP1556PP_P01(2).jpg BC\EPP\KAP
    I would like results where I can search for the file name and only one file is found matching the search word.
    Thanks

    Is this a SQL Server Reporting question?  You maybe better off posting this in a more relevant forum.

  • Full-text Search in RoboHelp

    I have downloaded JavaHelp using Sun Download Manager (download and extract JavaHelp) to activate Full-text Search in RoboHelp. But, while generating Help in RoboHelp, I get an error that JavaHelp is not installed. I am not able to understand how to Install JavaHelp. Please help.

    That's the way it worked in X4 and later versions up but not including RH8. RH8 includes phrase searching in webhelp.
    See www.grainge.org for RoboHelp and Authoring tips

  • Full text search in local CD-ROM app

    Hi all,
    I want to develop a local application deploying in CD-ROM,
    and I want to use about 1.000 PDF documents.
    I thing that it's a good idea to convert the PDFs to SWFs
    using the FlashPaper.
    My answer is how can I make a full text search using the
    contents of these files. Is it possible?
    Thanks in advance

    Hi,
    We can create a custom tool for you that will enable you to
    search text in
    ALL your pdf files. That's not a problem.
    If this sounds interesting read this
    http://hire.flashjester.com
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • QUESTION OF FULL TEXT SEARCH IN R/3 4.6C USING TREX IN EP 6.0 SP9

    Hi all:
        I can use R/3(46c) plus content server(6.3) to store
    Documents by KPRO.I've installed EP(6.0 sp9) plus Trex(6.1sp9).I want use this Trex to implement full text search,I can see the index id in the trex_xx\index directory.when I use tcode skpr07,I can find no problem,But when I use tcode cv04n,I can not find any document,the system does not display any error.
        What's wrong?

    hi there
    can anyone help me with this...
    How to integrate TREX in SAP R/3 System.
    I found that u r discussing abt TREX in SAP R/3. Can u people help me with the basics required for that....
    I have tried TREX in SAP Enterprise Portal and its working.
    Now i would like to incorporate TREx in R/3 system.
    How do we do that... Is it necessary that we need to install SAP Gateway in TREX host. Or is it possible without that.
    Can anyone brief me on what are the important settings to be made for that.
    Also i came across the RFC destination creation for connecting TREX with the R/3 system.
    I would like to know what kind of data is commonly indexed in R/3 and that too how. What is it that provides an interface for the user.
    In the case of portal we  define a a KM repository as the datasource likewise in R/3 system what do we define as datasource.
    I know these questions may sound very silly... pls do help
    regards
    Sasha

  • Information on full text search in Oralce Database

    Hi,
    We are looking to implement full text search using Oracle database. Where can I find info on this topic? Specifically, I'm looking for
    1) an overview of how to implement them in Oracle database - column type, size/limitations etc.
    2) does oracle database come with filters to extract and filter data from different file formats such as Ms office, PDF (images) etc.
    Appreciate your reply

    Look into the Oracle Text documentation. It has the answers to your questions.

  • Full text search in IMAP accounts

    I use IMAP with apple mail.
    Whenever I try to do a full text search using the spotlight in mail it doesn't find messages most of the time.
    I guess that it only finds the messages, which have been viewed previously. It should look at the messages on the server but not necessarily downloaded.
    Can somebody shed some light on this on how this is supposed to work.
    I have the option to keep messages for offline viewing set for only messages read.
    THX

    Manilx, what you're saying doesn't make sense.
    I hope I'll myself clear:
    It is only available when I select a folder within
    a mailbox.
    What folders are you talking about? Could it be that
    you're calling "mailbox" the (@) icon that
    groups the custom mailboxes stored remotely at the
    IMAP server?
    I have 2 imap accounts defined in mail. Each one has several folders (on the imap server) underneath it. When I select the account (world icon) the option is greyed out. When I select one of the imap folders I can run it.
    It clears all messages, runs a while then the messages reappear BUT when I select them this is when they are fetched from the server.
    UNLESS mail is still fetching them behind scenes... But there is no indication of this (no counter or whatever to see what it is doing).
    This is what Rebuild does (quoted from Mail Help):
    For IMAP accounts, locally cached
    messages are discarded and the messages are
    downloaded again from the server to your hard disk.
    Your mailbox appears empty until the download is
    complete.
    I don't thin k this is what I'm seeing.....
    Thx for your suggestions!

  • Full text search in Chinese Language not finding results

    We are translating one of our Webhelp projects into
    simplified chinese, and everything is working fine except full text
    search. We can type chinese characters into the search box but no
    results appear even though we have already translated a lot of the
    webhelp into chinese. Note that we have breadcrumbs, TOC and Index
    functioning correctly in chinese.
    The FAQ for Robohelp claims that FTS is supported in other
    languages but I am stuck - I can't figure out how to make it work.
    Any help would be greatly appreciated.

    There was some language stuff in those patches that I hoped
    would fix your problem, obviously not.
    I am not familiar with working with languages. Have you tried
    changing the language in Project Settings? Have you tried importing
    a couple of topics into a new project?
    Beyond that, hopefully someone with more relevant knowledge
    can help you.

  • "Filter/partition key" for full-text searching

    Hi there,
    We have a challenge whereby we have a table of products by store, each store having say 200,000 products.  Basically, for each store, we want to allow searching by product name.  The best solution for this is to have full-text searching, but there
    is no way to have a "filter" or "partition" key on the store ID.
    So in essence what happens, the full-text search scans the entire full-text catalog for the products, then it uses the primary key to match to the table and then filters out the other stores.  Considering we have hundreds of stores in the table, this
    is not a good solution.
    We contemplated adding separate indexed views and full-text catalogs for every store, but this would be a nightmare to manage.
    I was expecting to see some sort of a "partition by Column" in the full-text indexes, but it doesn't exist.  This basically means we have to scrap full-text and look for a third party solution.
    Does anyone have any idea how we could achieve this with just standard SQL full-text searching?

    Hi Adam,
    Thank you for your question.  I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    If you have any feedback on our support, please click
    here.
    Elvis Long
    TechNet Community Support

  • Executing a full-text search using KM APIs

    Hello,
    I'm doing a KM Folder search using KM APIs. The code looks similar to this
    =====================================================
    IGenericQueryFactory queryFactory = GenericQueryFactory.getInstance();
         IQueryBuilder queryBldr = queryFactory.getQueryBuilder();
         IPropertyName ipn = new PropertyName("http://sapportals.com/xmlns/cm", "lang");
         IQueryExpression queryExpr =
              queryBldr.like(ipn, language.toLowerCase());
         IGenericQuery query = queryFactory.toGenericQuery(queryExpr);
         IResourceList result = query.execute(
         collection, Integer.MAX_VALUE,7,false);
    ======================================================
    Issue: How can I execute a full-text search using these APIs. 
    i.e. If the keyword exists in the body of the document, the search should return that document.
    Any help on this would be much appreciated.
    Thanks,
    Harman

    Thanks for your helpful answers.
    So, which APIs should I use to accomplish my goal?  I need to search for custom KM attributes, AND the body of the document.
    We are currently running EP6 SP2.
    Should I use the IFederatedSearch API.
    Thanks,
    Harman

Maybe you are looking for

  • Replacement from the Value of an Attribute*

    Replacement from the Value of an Attribute With formula variables you can set the processing type Replacement from the Value of an Attribute and create a reference to the reference characteristic for the variable. The attribute Reference to Character

  • Help!!!  2009 Macbook Starts up in OS X Disk Utilities

    So I was trying to fix Microsoft Word. I was looking up one of the forums and it told me to press the "option" key when I start it up. Not too sure what I did but I clicked on the hrd drive with my name on it and  but now every time I start it up, it

  • Service battery notice!

    I have the first Intel based Macbook (2006) white.  Battery model: DP ASMB016.  Under System profile the charge remaining is 3620.  Full charge capacity is 3769 and the cycle count is 240.  This is my second battery in 5 years.  The battery icon says

  • Problem with the 4.3.2 software update?

    I have a 32GB Ipod touch and recently I have been having what seems to be software problems. I can't use apps without the Ipod skipping back to the main screen, or the recently used apps list popping up from the bottom of the screen. When left on the

  • Discoverer Viewer - Calendar usage

    Hi, I am working with Discoverer Plus and Discoverer Viewer. I have a report defined with a parameter of type DATE. When working Discoverer Plus I see the calendar icon near the parameter and I can use it to easily choose a date. However, when I run