Skip to content
This repository has been archived by the owner on Sep 19, 2022. It is now read-only.

jaystack/odata-v4-server-mssql-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

odata-v4-server-mssql-example

MS SQL Server example for JayStack OData V4 Server

About JayStack OData V4 Server (odata-v4-server)

With JayStack OData v4 Server you can build your own data endpoints without the hassle of implementing any protocol-level code. This framework binds OData v4 requests to your annotated controller functions, and compiles OData v4 compatible response. Clients can access services through OData-compliant HTTP requests. We recommend the JayData library for consuming OData v4 APIs.

This example uses JayStack OData V4 Server (odata-v4-server) and odata-v4-mssql libraries.

You can build your own OData v4 compatible service step-by-step by following this tutorial

Also, there are sevaral client examples at JayStack OData V4 Server (odata-v4-server):

Technical details of this example

Setting up the database

You have to create the database manually using these commands:

USE master;
Go
DROP DATABASE IF EXISTS northwind;
Go
CREATE DATABASE northwind;
Go

Setting up the connection string to your MS SQL Server

You have to customize the db connection options by editing request.ts. These are the default options:

const dbConfig = {
    driver: "msnodesqlv8",    // alternatively you can use "tedious" after installing it by 'npm i tedious'
    server: "DESKTOP-USER",   // use your real server name
                              // using "localhost" may result in duplicate rows in the recordset
    database: "northwind",    // mandatory
    user: "sa",               // your system administrator's username
    password: "***"           // your system administrator's password
};

By default, the DB server will listen on port 1433 so we did not include this parameter above.

Building the application

Use command:

npm run build

testing the application

Use command:

npm test

Starting the application

Use command:

npm start

Creating sample data

After starting the application (the API will listen on localhost:3000 by default) you can generate / recreate the sample dataset by submitting localhost:3000/initDb. Alternatively, if you start unit tests (npm test), the database will be initialized automatically.

Remarks

Default data sorting

Unlike other database systems, MS SQL Server will not order your recordset by default. (Some database systems 'use' an implicit default ordering, depending on indices used in the query and on what order they are used. This implicit sorting can change as the data/statistics change and the optimizer chooses different plans. In MS SQL Server this implicit ordering is missing.) Therefore two unit tests (for /Products and /Categories) had to be 'hacked' to sort the resulting data.

If you want a default sorting eg. on 'Id' then you can achieve it by adding these three lines to controller.ts at line #153 and #17 (just before the return startement of the two async find() functions):

if (!sqlQuery.orderby || sqlQuery.orderby == "1") {
  sqlQuery.orderby = "Id";
}

About

MSSQL example for odata-v4-server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published