Skip to content

Commit 2b58b6d

Browse files
committed
Updated copyright dates
Change-Id: Idc21631ee7e0df1309e8f81ad4ceb6b318ed8bbb
1 parent 80b69e5 commit 2b58b6d

18 files changed

+23
-17
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This is a Node.js driver written for [SAP SQL Anywhere](http://www.sap.com/pc/tech/database/software/sybase-sql-anywhere/index.html).
33

44
[![NPM](https://nodei.co/npm/sqlanywhere.png?compact=true)](https://nodei.co/npm/sqlanywhere/)
5+
56
##Install
67
```
78
npm install sqlanywhere

build.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// ***************************************************************************
2+
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
3+
// ***************************************************************************
14
var db = null;
25
var exec = require('child_process').exec;
36
exec( "rm ./build/Release/sqlanywhere.node", function( error, out, err ) {

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) 2014 SAP AG or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2017 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) 2016 SAP SE or an SAP affiliate company. All rights reserved.
2+
# Copyright (c) 2017 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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// ***************************************************************************
2+
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
3+
// ***************************************************************************
14
var db = null;
25
var driver_file = "sqlanywhere"
36

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.14",
5+
"version": "1.0.15",
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) 2016 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2017 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) 2016 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2017 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) 2016 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2017 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) 2016 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2017 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)