AMARI is a music player program that lets users post music and listen to music made by others.
These instructions will get you a copy of the project up and running on your local machine.
- Clone the repository
- 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
- Start Visual Studio.
- On the menu bar, choose File -> Open -> Project.
- Specify location of the project.
- Modify the uid and pwd values found in
./Azmari/Azmari/DBService.cs
to the username and password of your SQL Server - Click the Run button or press F5 key to execute the project.
namespace Azmari
{
class DBService
{
string conStr = "server=.;database=AZMARI;uid=username;pwd=password;pooling=true; connection lifetime=120; max pool size=500";
- Liul Alemayehu - Initial work