Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kentico-ericd/xperience-community-sqlbrowser
Run SQL queries directly from the Xperience by Kentico administration
https://github.com/kentico-ericd/xperience-community-sqlbrowser
sql xperience-by-kentico
Last synced: about 2 months ago
JSON representation
Run SQL queries directly from the Xperience by Kentico administration
- Host: GitHub
- URL: https://github.com/kentico-ericd/xperience-community-sqlbrowser
- Owner: kentico-ericd
- License: mit
- Created: 2024-11-05T20:16:45.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-12-10T22:33:39.000Z (about 2 months ago)
- Last Synced: 2024-12-10T22:56:22.034Z (about 2 months ago)
- Topics: sql, xperience-by-kentico
- Language: C#
- Homepage:
- Size: 1.88 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Xperience Community: SQL Browser
[![Nuget](https://img.shields.io/nuget/v/XperienceCommunity.SqlBrowser)](https://www.nuget.org/packages/XperienceCommunity.SqlBrowser#versions-body-tab)
[![build](https://github.com/kentico-ericd/xperience-community-sqlbrowser/actions/workflows/build.yml/badge.svg)](https://github.com/kentico-ericd/xperience-community-sqlbrowser/actions/workflows/build.yml)## Description
This new module found in the __Development__ category allows users to execute SQL queries within the administration UI and view the results in a table. SQL results can be exported to common file types, and result rows can be clicked for a detailed view.
## Library Version Matrix
| Xperience Version | Library Version |
| ----------------- | --------------- |
| 29.x.y | >=1.x.y |## :gear: Package Installation
Add the package to your application using the .NET CLI
```powershell
dotnet add package XperienceCommunity.SqlBrowser
```## 🚀 Quick Start
Add the following to your application's startup code:
```cs
builder.Services.AddSqlBrowser();
```Open the new __SQL browser__ application in the __Development__ category. All database tables and columns are listed below for reference. Enter your SQL query and click "Run."
![Query](/images/editquery.png)
The results of your query will be displayed in a table. Click on an individual row to view the full detail of that row's columns. The result set can be exported using the buttons above the table.
![Results](/images/results.png)