org.mariadb.jdbc.codec.ParameterWithCal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mariadb-java-client Show documentation
Show all versions of mariadb-java-client Show documentation
JDBC driver for MariaDB and MySQL
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (c) 2012-2014 Monty Program Ab
// Copyright (c) 2015-2023 MariaDB Corporation Ab
package org.mariadb.jdbc.codec;
import java.io.IOException;
import java.sql.SQLException;
import java.util.Calendar;
import org.mariadb.jdbc.client.Context;
import org.mariadb.jdbc.client.socket.Writer;
import org.mariadb.jdbc.plugin.Codec;
public class ParameterWithCal extends Parameter {
private final Calendar cal;
public ParameterWithCal(Codec codec, T value, Calendar cal) {
super(codec, value);
this.cal = cal;
}
@Override
public void encodeText(Writer encoder, Context context) throws IOException, SQLException {
codec.encodeText(encoder, context, this.value, this.cal, length);
}
@Override
public void encodeBinary(Writer encoder) throws IOException, SQLException {
codec.encodeBinary(encoder, this.value, this.cal, length);
}
}