summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Database/DriverSkeleton
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Database/DriverSkeleton')
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/Makefile8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/OTypeInfo.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SServices.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.hxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.cxx8
-rw-r--r--odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.hxx8
20 files changed, 20 insertions, 140 deletions
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/Makefile b/odk/examples/DevelopersGuide/Database/DriverSkeleton/Makefile
index 076da65424aa..cbd28b982eac 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/Makefile
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/Makefile
@@ -1,15 +1,9 @@
#*************************************************************************
#
-# $RCSfile: Makefile,v $
-#
-# $Revision: 1.10 $
-#
-# last change: $Author: rt $ $Date: 2008-07-11 14:21:12 $
-#
# The Contents of this file are made available subject to the terms of
# the BSD license.
#
-# Copyright (c) 2003 by Sun Microsystems, Inc.
+# Copyright 2000, 2010 Oracle and/or its affiliates.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx
index bdd157d07241..57ff6e0a3f09 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: OSubComponent.hxx,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: rt $ $Date: 2008-07-11 14:21:27 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/OTypeInfo.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/OTypeInfo.hxx
index 6921cb25b8c4..84f44d1c7e08 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/OTypeInfo.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/OTypeInfo.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: OTypeInfo.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:30:25 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
index ae27a1ff76fa..f96cfd8ed93b 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SConnection.cxx,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:30:40 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx
index 4a289b4b933d..17714d035f87 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SConnection.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:31:02 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.cxx
index 5e72bab0be8c..8704efd6ca64 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SDatabaseMetaData.cxx,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:32:09 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.hxx
index eef8a6de2166..8f0a3f506a13 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDatabaseMetaData.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SDatabaseMetaData.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:33:11 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.cxx
index b69230f3fb04..39fd5ce42f32 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SDriver.cxx,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: kz $ $Date: 2006-11-06 15:00:59 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.hxx
index 72440565491d..077ebab73d50 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SDriver.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SDriver.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:33:31 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx
index 159f49640680..2f6cd42e96f7 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SPreparedStatement.cxx,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:34:02 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx
index 65666eca04b2..21c22e46792a 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SPreparedStatement.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SPreparedStatement.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:34:30 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
index 1154cf2d31fe..be4e1f92e3b6 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SResultSet.cxx,v $
- *
- * $Revision: 1.7 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:35:24 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.hxx
index d17cf2676393..3849c06f865e 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSet.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SResultSet.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:36:12 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.cxx
index cc6acf21877f..fd5d0791f4a9 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SResultSetMetaData.cxx,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: kz $ $Date: 2006-11-06 15:01:40 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.hxx
index f594c348b28f..0657c74af719 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SResultSetMetaData.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SResultSetMetaData.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:36:32 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SServices.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SServices.cxx
index 56632ca1ac64..820d96f83c46 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SServices.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SServices.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SServices.cxx,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:36:52 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
index b9b5e71559e3..b8f0fb4f01bd 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SStatement.cxx,v $
- *
- * $Revision: 1.7 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:37:21 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.hxx
index a12645f40b4c..014e84f48423 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SStatement.hxx,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:37:41 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.cxx
index 4bd612c73414..2079cf9da77c 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.cxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: propertyids.cxx,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:38:16 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.hxx
index 1ab2d08511f0..e3b37580bd36 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/propertyids.hxx
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: propertyids.hxx,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2008-04-10 16:38:35 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without