Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8389723
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:48:10+00:00 2026-06-09T18:48:10+00:00

I use the SQLite.NET ORM wrapper for SQLite on MonoTouch to create a database

  • 0

I use the SQLite.NET ORM wrapper for SQLite on MonoTouch to create a database based on business objects. Works fine.

I wish to run the SQLite full text indexing command so that a full text virtual table is created. However the SQLite.Net ORM doesn’t support that directly. Is there a way to create an index using other commands on MonoTouch?

The SQL to create a Full Text Index is just:

CREATE VIRTUAL TABLE "Term" USING FTS3 (
"Id" INTEGER PRIMARY KEY,
"Word" integer,
"Definition" TEXT 
);

insert into Term(Id,Word,Definition) 
  Select Id,Word,Definition from SomeOtherTable;

drop table SomeOtherTable;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T18:48:12+00:00Added an answer on June 9, 2026 at 6:48 pm

    I believe that SQLite.NET does not supports creating full text indexes, but supports creating ordinary indexes.

    Anyway, you could try to execute any custom SQL-code via:

    <YOUR_SUBCLASS_OF_SQLiteConnection>.Execute(<YOUR_SQL_CODE>);
    

    Example:

    public class LocalDatabase: SQLiteConnection
    {
        ...
        public LocalDatabase (string path) : base(path)
        {
            ...
            Execute("CREATE VIRTUAL TABLE \"MyTable\" USING FTS3 ...");
            ...
        }       
        ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use a SQLite database and Entity Framework (with .net framework 3.5). I'm trying
I was trying to use SQLite database using ADO.NET Entity Framework 5 and I
i wanted to use SQLite with .net application. It only works if the DLL
What components can I use to use SQlite database with Delphi 6?
Please any on tell me can i use Sqlite database in my Windows Phone
I'm writing an application in Python where I wish to use sqlite as the
I am attempting to use a SQLite database to store emails locally in android.
I use the solution of http://ioannis.mpsounds.net/2007/12/19/sqlite-native-unicode-like-support/ for my POS App for the iPhone ,
When Rasmus Lerdorf will update sqlite_* functions here: http://php.net/manual/en/book.sqlite.php to use SQLite version 3?
I'm trying to use SQLite in my .Net application but it throws an exception

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.