src/share/classes/javax/sql/rowset/serial/SerialArray.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 200,210 **** } } } /** ! * This method frees the {@code SeriableArray} object and releases the * resources that it holds. The object is invalid once the {@code free} * method is called. <p> If {@code free} is called multiple times, the * subsequent calls to {@code free} are treated as a no-op. </P> * * @throws SQLException if an error occurs releasing the SerialArray's resources --- 200,210 ---- } } } /** ! * This method frees the {@code SerialArray} object and releases the * resources that it holds. The object is invalid once the {@code free} * method is called. <p> If {@code free} is called multiple times, the * subsequent calls to {@code free} are treated as a no-op. </P> * * @throws SQLException if an error occurs releasing the SerialArray's resources
*** 311,321 **** Object dst = new Object[len]; System.arraycopy((Object)elements, 0, dst, 0, len); return dst; } - //[if an error occurstype map used??] /** * Returns a new array that is a copy of this <code>SerialArray</code> * object, using the given type map for the custom * mapping of each element when the elements are SQL UDTs. * <P> --- 311,320 ----