Skip to content

Commit fd697f2

Browse files
committed
docs: fix examples
1 parent 4f87ad3 commit fd697f2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# `rdfjs-source-msaccess`
22

3+
![NPM](https://img.shields.io/npm/v/@rdmr-eu/rdfjs-source-msaccess)
4+
35
This library and CLI creates RDF quads from a Microsoft Access database (`.accdb` or `.mdb`).
46

7+
Read the [introductory blog post][https://rdmr.eu/2023/msaccess] or go directly to [NPM](https://www.npmjs.com/package/@rdmr-eu/rdfjs-source-msaccess/access).
8+
59
## Usage
610

711
Run it without installing using e.g. `npx`: `$ npx @rdmr-eu/rdfjs-source-msaccess`.
@@ -10,7 +14,7 @@ Add it as a library with e.g. `$ yarn add @rdmr-eu/rdfjs-source-msaccess` and us
1014

1115
```ts
1216
const data = fs.readFileSync(inputFilePath);
13-
const mdb = new MSAccessQuadGenerator(data, { baseIRI: "https://example.org/data#" });
17+
const mdb = new MSAccess(data, { baseIRI: "https://example.org/data#" });
1418
const store = mdb.store(); // then use this RDF.Store in your code.
1519
```
1620

0 commit comments

Comments
 (0)