Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liulalemx/azmari
A music player that lets users post music and listen to music made by others.
https://github.com/liulalemx/azmari
csharp sql-server
Last synced: 1 day ago
JSON representation
A music player that lets users post music and listen to music made by others.
- Host: GitHub
- URL: https://github.com/liulalemx/azmari
- Owner: liulalemx
- Created: 2021-02-08T14:48:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-17T13:43:21.000Z (almost 4 years ago)
- Last Synced: 2024-11-18T00:15:15.652Z (1 day ago)
- Topics: csharp, sql-server
- Language: C#
- Homepage:
- Size: 15.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AZMARI
AMARI is a music player program that lets users post music and listen to music made by others.
![Azmari Usage](./azmari.gif)
## Getting Started
These instructions will get you a copy of the project up and running on your local machine.
### Prerequisites
- [.NET Framework](https://dotnet.microsoft.com/download/dotnet-framework)
- [IDE (Preferably Visual Studio)](https://visualstudio.microsoft.com/)
- [Microsoft SQL Server](https://www.microsoft.com/en-us/sql-server/sql-server-downloads)## Usage
1. Clone the repository
1. Create a SQL server database named AZMARI, and the tables/stored procedures/functions by executing the queries found in
`./Sql/AZMARI_tables.sql` and `./Sql/AZMARI_functions&storedprocedures.sql`
1. Start Visual Studio.
1. On the menu bar, choose File -> Open -> Project.
1. Specify location of the project.
1. Modify the **uid** and **pwd** values found in `./Azmari/Azmari/DBService.cs` to the username and password of your SQL Server
1. Click the Run button or press F5 key to execute the project.### Modifying the uid and pwd values
```c#
namespace Azmari
{
class DBService
{
string conStr = "server=.;database=AZMARI;uid=username;pwd=password;pooling=true; connection lifetime=120; max pool size=500";
```## Authors
- **Liul Alemayehu** - _Initial work_