KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
rqlite-dotnet
★ 35
Open GitHub ↗
.NET client
Download README (.md)
Explore Similar Repositories
rqlite-jdbc
:
Java jdbc for rqlite, the lightweight distributed relational database
jepsen.rqlite
:
No description available.
redis_queued_locks
:
Distributed locks with "prioritized lock acquisition queue" capabilities based on the Redis Database. Provides flexible invocation flow, parametrized time limits, zombie locks elimination, instrumentation, logging, etc.
rqlite-rs
:
Async Rqlite client for Rust
rql
:
Code for "Reversal Q-Learning (RQL)" for Flow RL from Prior Data
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
rqlite-dotnet
?
Download (.md)
# rqlite-dotnet [](https://www.nuget.org/packages/RqliteDotnet/)   .NET client for rqlite - lightweight distributed database. ## Features It supports the following features through Data API: * Execute statements * Query data * Parametrized statements/queries ## Example ```csharp var client = new RqliteClient("http://localhost:4001"); //Assuming you have rqlite running on that port locally var version = await client.Ping(); var queryResults = await client.Query("select * from foo"); var executeResults = await client.Execute("insert into foo (name) values('test')"); ``` There is also a basic ORM client similar to Dapper: ```csharp public class FooResultDto { public int Id { get; set; } public string Name { get; set; } } var rqClient = new RqliteOrmClient("http://localhost:6000"); var queryresults = await rqClient.Query<FooResultDto>("select * from foo"); //Returns List<FooResultDto> ``` You can see more examples in unit tests. NB: please report performance problems if any.