Skip to content

Commit b82fdbd

Browse files
Update driver for node12 support
1 parent 2c942a3 commit b82fdbd

File tree

16 files changed

+78
-70
lines changed

16 files changed

+78
-70
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# node-sqlanywhere
2-
This is a Node.js driver written for [SAP SQL Anywhere](http://www.sap.com/pc/tech/database/software/sybase-sql-anywhere/index.html).
2+
This is a Node.js driver written for [SAP SQL Anywhere](https://www.sap.com/products/sql-anywhere.html).
33

44
[![NPM](https://nodei.co/npm/sqlanywhere.png?compact=true)](https://nodei.co/npm/sqlanywhere/)
55

@@ -22,7 +22,8 @@ Versions supported:
2222
<tr><td>1.0.19</td><td>8.x</td></tr>
2323
<tr><td>1.0.22</td><td>9.x</td></tr>
2424
<tr><td>1.0.23</td><td>10.x</td></tr>
25-
<tr><td>1.0.24</th><td><b>Only</b> 5.x through 10.x (support for 0.10, 0.12, and 4.x is dropped)</td></tr>
25+
<tr><td>1.0.24<td><b>Only</b> 5.x through 10.x (support for 0.10, 0.12, and 4.x is dropped)</td></tr>
26+
<tr><td>1.0.25<td>5.x through 12.x</td></tr>
2627
</table>
2728

2829
## Getting Started

build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
var db = null;
55
var exec = require('child_process').exec;

examples/app1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
// This sample code is provided AS IS, without warranty or liability of any kind.
55
//

examples/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# ***************************************************************************
2-
# Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
# Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
# ***************************************************************************
44
These examples are intended to be used with the SQL Anywhere node.js driver.

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
var db = null;
55
var driver_file = "sqlanywhere"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "SQL ANYWHERE",
33
"name": "sqlanywhere",
44
"description": "SQL Anywhere JavaScript Driver.",
5-
"version": "1.0.24",
5+
"version": "1.0.25",
66
"repository": {
77
"url": "https://github.com/sqlanywhere/node-sqlanywhere"
88
},

src/h/connection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
using namespace v8;
55
using namespace node;

src/h/errors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
#define JS_ERR_INVALID_OBJECT -2001
55
#define JS_ERR_INVALID_ARGUMENTS -2002

src/h/nodever_cover.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
#include <node_version.h>
55

src/h/sacapi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
//
55
// Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)