Sql Server implementation of the ITransport interface for use with Shuttle.Hopper. Uses a table for each required queue.
Currently only the Microsoft.Data.SqlClient provider is supported but this can be extended. You are welcome to create an issue and assistance will be provided where able; else a pull request would be most welcome.
TThe URI structure is sql://configuration-name/queue-name.
services.AddDataAccess(builder =>
{
builder.AddConnectionString("shuttle", "Microsoft.Data.SqlClient", "server=.;database=shuttle;user id=sa;password=Pass!000");
});
services.AddSqlQueue(builder =>
{
builder.AddOptions("shuttle", new SqlQueueOptions
{
ConnectionStringName = "shuttle"
});
});The default JSON settings structure is as follows:
{
"Shuttle": {
"SqlQueue": {
"ConnectionStringName": "connection-string-name"
}
}
}| Option | Default | Description |
|---|---|---|
ConnectionStringName |
The name of the connection string to use. This package makes use of Shuttle.Core.Data for data access. |