aboutsummaryrefslogtreecommitdiff
path: root/mssql
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-09 10:19:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-09 10:19:19 +0200
commitd56f7077de2a985b9e105df3fd70253381a01401 (patch)
tree517733baa1781534f20ad16db9faf86ff52a90db /mssql
parent73ec71168651c90160635fa9c990edc716c0dd34 (diff)
Update copyright year
Diffstat (limited to 'mssql')
-rw-r--r--mssql/Makefile.am2
-rw-r--r--mssql/custom/driver.cxx2
-rw-r--r--mssql/custom/makefile2
-rw-r--r--mssql/custom/query.hxx2
-rw-r--r--mssql/custom/test.hxx2
-rw-r--r--mssql/custom/traits.hxx2
-rw-r--r--mssql/database/driver.cxx2
-rw-r--r--mssql/database/makefile2
-rw-r--r--mssql/makefile2
-rw-r--r--mssql/native/driver.cxx2
-rw-r--r--mssql/native/makefile2
-rw-r--r--mssql/query/driver.cxx2
-rw-r--r--mssql/query/makefile2
-rw-r--r--mssql/query/test.hxx2
-rw-r--r--mssql/template/Makefile.am2
-rw-r--r--mssql/template/driver.cxx2
-rw-r--r--mssql/template/makefile2
-rw-r--r--mssql/template/test.hxx2
-rw-r--r--mssql/test.bat2
-rw-r--r--mssql/types/driver.cxx2
-rw-r--r--mssql/types/makefile2
-rw-r--r--mssql/types/test.hxx2
-rw-r--r--mssql/types/traits.hxx2
23 files changed, 23 insertions, 23 deletions
diff --git a/mssql/Makefile.am b/mssql/Makefile.am
index ef043a8..2563560 100644
--- a/mssql/Makefile.am
+++ b/mssql/Makefile.am
@@ -1,5 +1,5 @@
# file : mssql/Makefile.am
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
SUBDIRS = __path__(dirs)
diff --git a/mssql/custom/driver.cxx b/mssql/custom/driver.cxx
index 3e69f97..142d35c 100644
--- a/mssql/custom/driver.cxx
+++ b/mssql/custom/driver.cxx
@@ -1,5 +1,5 @@
// file : mssql/custom/driver.cxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
// Test custom database type mapping in SQL Server.
diff --git a/mssql/custom/makefile b/mssql/custom/makefile
index 9945c44..94be7b2 100644
--- a/mssql/custom/makefile
+++ b/mssql/custom/makefile
@@ -1,5 +1,5 @@
# file : mssql/custom/makefile
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
diff --git a/mssql/custom/query.hxx b/mssql/custom/query.hxx
index 0c5f1f2..d2e29e6 100644
--- a/mssql/custom/query.hxx
+++ b/mssql/custom/query.hxx
@@ -1,5 +1,5 @@
// file : mssql/custom/query.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef QUERY_HXX
diff --git a/mssql/custom/test.hxx b/mssql/custom/test.hxx
index 5548baa..6f44a77 100644
--- a/mssql/custom/test.hxx
+++ b/mssql/custom/test.hxx
@@ -1,5 +1,5 @@
// file : mssql/types/test.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST_HXX
diff --git a/mssql/custom/traits.hxx b/mssql/custom/traits.hxx
index 34081ed..421f288 100644
--- a/mssql/custom/traits.hxx
+++ b/mssql/custom/traits.hxx
@@ -1,5 +1,5 @@
// file : mssql/types/traits.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TRAITS_HXX
diff --git a/mssql/database/driver.cxx b/mssql/database/driver.cxx
index 47a1559..2dd4fec 100644
--- a/mssql/database/driver.cxx
+++ b/mssql/database/driver.cxx
@@ -1,5 +1,5 @@
// file : mssql/database/driver.cxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL; see accompanying LICENSE file
// Test that database constructors are unambiguous (compilation only).
diff --git a/mssql/database/makefile b/mssql/database/makefile
index 1d8848d..c9e2c59 100644
--- a/mssql/database/makefile
+++ b/mssql/database/makefile
@@ -1,5 +1,5 @@
# file : mssql/database/makefile
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
diff --git a/mssql/makefile b/mssql/makefile
index 0708fb0..df8e9c1 100644
--- a/mssql/makefile
+++ b/mssql/makefile
@@ -1,5 +1,5 @@
# file : mssql/makefile
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
diff --git a/mssql/native/driver.cxx b/mssql/native/driver.cxx
index 710c3c5..588b3fd 100644
--- a/mssql/native/driver.cxx
+++ b/mssql/native/driver.cxx
@@ -1,5 +1,5 @@
// file : mssql/native/driver.cxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL; see accompanying LICENSE file
// Test native SQL execution.
diff --git a/mssql/native/makefile b/mssql/native/makefile
index 3a09c6c..17ff8a5 100644
--- a/mssql/native/makefile
+++ b/mssql/native/makefile
@@ -1,5 +1,5 @@
# file : mssql/native/makefile
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
diff --git a/mssql/query/driver.cxx b/mssql/query/driver.cxx
index 03b3284..bb0b740 100644
--- a/mssql/query/driver.cxx
+++ b/mssql/query/driver.cxx
@@ -1,5 +1,5 @@
// file : mssql/query/driver.cxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
// Test SQL Server-specific query support aspects.
diff --git a/mssql/query/makefile b/mssql/query/makefile
index cd3a457..98d1f68 100644
--- a/mssql/query/makefile
+++ b/mssql/query/makefile
@@ -1,5 +1,5 @@
# file : mssql/query/makefile
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
diff --git a/mssql/query/test.hxx b/mssql/query/test.hxx
index ae1a76e..7f1c1f6 100644
--- a/mssql/query/test.hxx
+++ b/mssql/query/test.hxx
@@ -1,5 +1,5 @@
// file : mssql/query/test.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST_HXX
diff --git a/mssql/template/Makefile.am b/mssql/template/Makefile.am
index 500c758..4e7904a 100644
--- a/mssql/template/Makefile.am
+++ b/mssql/template/Makefile.am
@@ -1,5 +1,5 @@
# file : mssql/template/Makefile.am
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
EXTRA_DIST = __file__(extra_dist)
diff --git a/mssql/template/driver.cxx b/mssql/template/driver.cxx
index 26488fc..9e6b481 100644
--- a/mssql/template/driver.cxx
+++ b/mssql/template/driver.cxx
@@ -1,5 +1,5 @@
// file : mssql/template/driver.cxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
// PLACE TEST DESCRIPTION HERE
diff --git a/mssql/template/makefile b/mssql/template/makefile
index 441e45d..2218018 100644
--- a/mssql/template/makefile
+++ b/mssql/template/makefile
@@ -1,5 +1,5 @@
# file : mssql/template/makefile
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
diff --git a/mssql/template/test.hxx b/mssql/template/test.hxx
index 805312b..7eca09b 100644
--- a/mssql/template/test.hxx
+++ b/mssql/template/test.hxx
@@ -1,5 +1,5 @@
// file : mssql/template/test.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST_HXX
diff --git a/mssql/test.bat b/mssql/test.bat
index 74d692a..2fbfb34 100644
--- a/mssql/test.bat
+++ b/mssql/test.bat
@@ -1,6 +1,6 @@
@echo off
rem file : mssql/test.bat
-rem copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+rem copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
rem license : GNU GPL v2; see accompanying LICENSE file
setlocal
diff --git a/mssql/types/driver.cxx b/mssql/types/driver.cxx
index 6276bab..1c2d7d8 100644
--- a/mssql/types/driver.cxx
+++ b/mssql/types/driver.cxx
@@ -1,5 +1,5 @@
// file : mssql/types/driver.cxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
// Test SQL Server type conversion.
diff --git a/mssql/types/makefile b/mssql/types/makefile
index fcac4f3..eeb9d8b 100644
--- a/mssql/types/makefile
+++ b/mssql/types/makefile
@@ -1,5 +1,5 @@
# file : mssql/types/makefile
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
diff --git a/mssql/types/test.hxx b/mssql/types/test.hxx
index 884db35..82f8147 100644
--- a/mssql/types/test.hxx
+++ b/mssql/types/test.hxx
@@ -1,5 +1,5 @@
// file : mssql/types/test.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST_HXX
diff --git a/mssql/types/traits.hxx b/mssql/types/traits.hxx
index 659a89e..725e449 100644
--- a/mssql/types/traits.hxx
+++ b/mssql/types/traits.hxx
@@ -1,5 +1,5 @@
// file : mssql/types/traits.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TRAITS_HXX