~maria-captains/mariadb-java-client/trunk

« back to all changes in this revision

Viewing changes to src/main/java/org/mariadb/jdbc/internal/common/packet/commands/StreamedQueryPacket.java

  • Committer: Vladislav Vaintroub
  • Date: 2012-11-29 19:39:10 UTC
  • Revision ID: wlad@montyprogram.com-20121129193910-159sqyapqzdmdjxl
More copyright dance. Remove SSL test, it does not do anything

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Drizzle-JDBC
3
 
 *
4
 
 * Copyright (c) 2009-2011, Marcus Eriksson, Stephane Giron
5
 
 *
6
 
 * All rights reserved.
7
 
 *
8
 
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
9
 
 * conditions are met:
10
 
 *
11
 
 *  Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
12
 
 *  Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
13
 
 *   disclaimer in the documentation and/or other materials provided with the distribution.
14
 
 *  Neither the name of the driver nor the names of its contributors may be used to endorse or promote products derived
15
 
 *   from this software without specific prior written permission.
16
 
 *
17
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
18
 
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19
 
 * EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20
 
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21
 
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
22
 
 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
 
 */
 
2
MariaDB Client for Java
 
3
 
 
4
Copyright (c) 2012 Monty Program Ab. All Rights Reserved.
 
5
 
 
6
This library is free software; you can redistribute it and/or modify it under
 
7
the terms of the GNU Lesser General Public License as published by the Free
 
8
Software Foundation; either version 2.1 of the License, or (at your option)
 
9
any later version.
 
10
 
 
11
This library is distributed in the hope that it will be useful, but
 
12
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
13
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 
14
for more details.
 
15
 
 
16
You should have received a copy of the GNU Lesser General Public License along
 
17
with this library; if not, write to Monty Program Ab info@montyprogram.com.
 
18
 
 
19
This particular MariaDB Client for Java file is work
 
20
derived from a Drizzle-JDBC. Drizzle-JDBC file which is covered by subject to
 
21
the following copyright and notice provisions:
 
22
 
 
23
Copyright (c) 2009-2011, Marcus Eriksson, Stephane Giron
 
24
 
 
25
All rights reserved.
 
26
 
 
27
Redistribution and use in source and binary forms, with or without modification,
 
28
are permitted provided that the following conditions are met:
 
29
Redistributions of source code must retain the above copyright notice, this list
 
30
of conditions and the following disclaimer.
 
31
 
 
32
Redistributions in binary form must reproduce the above copyright notice, this
 
33
list of conditions and the following disclaimer in the documentation and/or
 
34
other materials provided with the distribution.
 
35
 
 
36
Neither the name of the driver nor the names of its contributors may not be
 
37
used to endorse or promote products derived from this software without specific
 
38
prior written permission.
 
39
 
 
40
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS  AND CONTRIBUTORS "AS IS"
 
41
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
42
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 
43
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 
44
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
45
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
46
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
47
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
48
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
 
49
OF SUCH DAMAGE.
 
50
*/
24
51
 
25
52
package org.mariadb.jdbc.internal.common.packet.commands;
26
53