Skip to content

Commit 259fca9

Browse files
committed
update company name and use canonical name "SProcWrapper"
1 parent df8ba9a commit 259fca9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2012 Zalando GmbH
1+
Copyright 2014 Zalando SE
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Supports horizontal database sharding (partition/access logic lies within applic
88
Type Mapping
99
------------
1010

11-
SprocWrapper provides an efficient and easy-to-use mechanism for translating values from database to Java objects and vice-versa. It allows us to map not only primitive types, but also complex types (Java domain objects).
11+
SProcWrapper provides an efficient and easy-to-use mechanism for translating values from database to Java objects and vice-versa. It allows us to map not only primitive types, but also complex types (Java domain objects).
1212

1313
Here are some examples!
1414

@@ -91,7 +91,7 @@ The following table shows the mapping between a database type and a Java type:
9191
| array | java.util.List / java.util.Set |
9292
| hstore | java.util.Map<java.lang.String, java.lang.String> |
9393

94-
Note: Sprocwrapper doesn't support functions returning arrays as a single output. If one wants to return a collection, please return a SETOF instead.
94+
Note: SProcwrapper doesn't support functions returning arrays as a single output. If one wants to return a collection, please return a SETOF instead.
9595

9696
Prerequisites
9797
-------------
@@ -127,7 +127,7 @@ Known issues
127127
* PostgreSQL domains are not supported as for now;
128128
* PostgreSQL `hstore` type is mapped from and to `Map<String,String>`, there is no way to use `Map` of different types for now;
129129
* Two different datasources with the same JDBC URL and different search paths might not work properly when we have types with the identical name;
130-
* SprocWrapper relies on the search path to resolve conflicting types with the same name (right now, we are not checking the schema). If one specifies the schema of the stored procedure's return type, SprocWrapper might end up using the wrong one, because it will use the `search_path` to resolve the conflict. For more info check test: `SimpleIT.testTypeLookupBugWithSchema`;
130+
* SProcWrapper relies on the search path to resolve conflicting types with the same name (right now, we are not checking the schema). If one specifies the schema of the stored procedure's return type, SProcWrapper might end up using the wrong one, because it will use the `search_path` to resolve the conflict. For more info check test: `SimpleIT.testTypeLookupBugWithSchema`;
131131
* For integration with Spring's transaction management use the `TransactionAwareDataSourceProxy` as the data source injected into the data source provider.
132132

133133
Documentation
@@ -143,7 +143,7 @@ You can find some more information about the SProcWrapper in our various Zalando
143143
License
144144
-------
145145

146-
Copyright 2012-2013 Zalando GmbH
146+
Copyright 2012-2014 Zalando SE
147147

148148
Licensed under the Apache License, Version 2.0 (the "License");
149149
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)