org.redkalex.source.mysql.MyReqQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redkale-plugins Show documentation
Show all versions of redkale-plugins Show documentation
Redkale-Plugins -- java framework
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkalex.source.mysql;
import static org.redkalex.source.mysql.Mysqls.*;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
import org.redkale.net.client.ClientConnection;
import org.redkale.util.*;
/** @author zhangjx */
public class MyReqQuery extends MyClientRequest {
protected String sql;
public void prepare(String sql) {
super.prepare();
this.sql = sql;
}
@Override
public int getType() {
return REQ_TYPE_QUERY;
}
@Override
public String toString() {
return "MyReqQuery_" + Objects.hashCode(this) + "{sql=" + sql + "}";
}
@Override
public void writeTo(ClientConnection conn, ByteArray array) {
byte[] sqlbytes = sql.getBytes(StandardCharsets.UTF_8);
Mysqls.writeUB3(array, 1 + sqlbytes.length);
array.put(packetIndex);
array.put(COM_QUERY);
array.put(sqlbytes);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy