001 /*
002 * The MIT License
003 *
004 * Copyright (c) 2012, Ninja Squad
005 *
006 * Permission is hereby granted, free of charge, to any person obtaining a copy
007 * of this software and associated documentation files (the "Software"), to deal
008 * in the Software without restriction, including without limitation the rights
009 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
010 * copies of the Software, and to permit persons to whom the Software is
011 * furnished to do so, subject to the following conditions:
012 *
013 * The above copyright notice and this permission notice shall be included in
014 * all copies or substantial portions of the Software.
015 *
016 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
017 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
018 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
019 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
020 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
021 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
022 * THE SOFTWARE.
023 */
024
025 package com.ninja_squad.dbsetup.bind;
026
027 import java.sql.ParameterMetaData;
028 import java.sql.SQLException;
029
030 import com.ninja_squad.dbsetup.DbSetup;
031 import com.ninja_squad.dbsetup.DbSetupTracker;
032
033 /**
034 * An object which returns the appropriate {@link Binder} based on the metadata of the prepared statement.
035 * The default instance of this interface is {@link DefaultBinderConfiguration}. If the binders returned by this
036 * default configuration don't fit for the particular database you're using, or if you would like the binders
037 * returned by the configuration to support additional data types, you might want to provide a different implementation
038 * of this interface to the {@link DbSetup}.
039 * <p>
040 * It's advised to make implementations of this interface immutable, and to make them implement equals and hashCode
041 * in order for {@link DbSetupTracker} to function properly, or to make them singletons.
042 * @author JB Nizet
043 */
044 public interface BinderConfiguration {
045
046 /**
047 * Returns the appropriate {@link Binder} for the given parameter, based on the given metadata.
048 * @param metadata the metadata allowing to decide which Binder to return
049 * @param param the param for which a binder is requested
050 * @return the binder for the given param and its metadata
051 * @throws SQLException if a SQLException occurs while using the metadata
052 */
053 Binder getBinder(ParameterMetaData metadata, int param) throws SQLException;
054 }