ttomcat-1778514358873.zip-extract/_dependencies/maven/com.h2database_h2-2.2.220/org/h2/jdbc/JdbcStatementBackwardsCompat.java

Path
ttomcat-1778514358873.zip-extract/_dependencies/maven/com.h2database_h2-2.2.220/org/h2/jdbc/JdbcStatementBackwardsCompat.java
Status
scanned
Type
file
Name
JdbcStatementBackwardsCompat.java
Extension
.java
Programming language
Java
Mime type
text/x-java
File type
Java source, ASCII text
Tag

      
    
Rootfs path

      
    
Size
1233 (1.2 KB)
MD5
b83d63e515538bb214d4f19f816267f9
SHA1
2fdb4d0926043933f96e3647e9277f50bb4ee788
SHA256
fa1a375258d2df6f75e3ee1458702ec34a386a740127a4f78be8fbe982a0faf6
SHA512

      
    
SHA1_git
ed17310512513017c832e828b6096afd16300085
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
JdbcStatementBackwardsCompat.java | 1.2 KB |

/* * Copyright 2004-2023 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (https://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.jdbc; import java.sql.SQLException; /** * Allows us to compile on older platforms, while still implementing the methods * from the newer JDBC API. */ public interface JdbcStatementBackwardsCompat { // compatibility interface // JDBC 4.3 (incomplete) /** * Enquotes the specified identifier. * * @param identifier * identifier to quote if required * @param alwaysQuote * if {@code true} identifier will be quoted unconditionally * @return specified identifier quoted if required or explicitly requested * @throws SQLException on failure */ String enquoteIdentifier(String identifier, boolean alwaysQuote) throws SQLException; /** * Checks if specified identifier may be used without quotes. * * @param identifier * identifier to check * @return is specified identifier may be used without quotes * @throws SQLException on failure */ boolean isSimpleIdentifier(String identifier) throws SQLException; }
Detected license expression
mpl-2.0 AND epl-1.0
Detected license expression (SPDX)
MPL-2.0 AND EPL-1.0
Percentage of license text
6.77
Copyrights
- end_line: 2
  copyright: Copyright 2004-2023 H2 Group. Multiple-Licensed
  start_line: 2
Holders
- holder: H2 Group. Multiple-Licensed
  end_line: 2
  start_line: 2
Authors

      
    
License detections License expression License expression SPDX
mpl_2_0_and_epl_1_0-796bf8d7-f485-3520-923d-e6a4b1ecd2f3 mpl-2.0 AND epl-1.0 MPL-2.0 AND EPL-1.0
URL Start line End line
https://h2database.com/html/license.html 3 3
Package URL License Primary language
pkg:osgi/com.h2database.source@2.2.220