https://github.com/rstm-sf/runsql
A simple cross-platform application for testing SQL select queries
https://github.com/rstm-sf/runsql
application avaloniaui cross-platform dotnet sql sqlite3
Last synced: 5 months ago
JSON representation
A simple cross-platform application for testing SQL select queries
- Host: GitHub
- URL: https://github.com/rstm-sf/runsql
- Owner: rstm-sf
- License: mit
- Created: 2020-05-01T09:40:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-17T09:41:03.000Z (over 4 years ago)
- Last Synced: 2025-02-09T13:14:33.291Z (about 1 year ago)
- Topics: application, avaloniaui, cross-platform, dotnet, sql, sqlite3
- Language: C#
- Homepage:
- Size: 2.66 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RunSQL

## About
RunSQL is a simple cross-platform application for testing SQL select queries.
Supported database servers:
- SQLite v3.31.1
## Sample Data
The source data was taken from the [Chinook Database](https://github.com/lerocha/chinook-database) project.
## How build it?
An easy way to build from source code is to use the [Git](https://git-scm.com/downloads) and the [.NET Core SDK 3.1](https://dotnet.microsoft.com/download/dotnet-core/3.1) as follows:
```sh
$ git clone https://github.com/rstm-sf/RunSQL.git && cd RunSQL
$ dotnet build -c Release
$ dotnet src/RunSQL/bin/Release/netcoreapp3.1/RunSQL.dll
```
Also, we can preliminarily change the [target framework](https://docs.microsoft.com/en-us/dotnet/standard/frameworks) in `.csproj` file to another one that [implementation supports](https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support) .NET Standard 2.0.