praeclarum / praeclarum/sqlite-net

Virtual Tables using FTS3/FTS4/RTREE

Open
#69 11 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Feature Up for Grabs
Dominant language
C#
Stars
4.5k
Forks
1.4k
PR merge metrics
No merged PRs in 30d

Description

class Page {
  public string Title { get; set; }
  public string Body { get; set; }
}

var db = new SQLiteConnection (...);
db.Execute ("CREATE VIRTUAL TABLE Page USING fts4(Title, Body)");
var pages = db.Query<Page> ("SELECT * FROM Page WHERE Body MATCH ?", "something");

http://www.sqlite.org/fts3.html

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start with the SQLiteConnection Execute and Query calls shown in the issue, and read the linked SQLite FTS3/FTS4 documentation alongside the RTREE virtual-table requirements. Done means the demonstrated virtual-table creation and query scenario works through sqlite-net, including the requested FTS3/FTS4/RTREE cases.

Written by the indexing model from the issue text.

Assessment

Tech stack
csharp, sqlite
Domain
database
Issue type
Feature
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
30/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.