praeclarum / praeclarum/sqlite-net
Virtual Tables using FTS3/FTS4/RTREE
Open
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");
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- 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