Class ComStmtPrepare
- java.lang.Object
-
- org.mariadb.jdbc.internal.com.send.ComStmtPrepare
-
public class ComStmtPrepare extends Object
-
-
Constructor Summary
Constructors Constructor Description ComStmtPrepare(Protocol protocol, String sql)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerPrepareResultread(PacketInputStream reader, boolean eofDeprecated)Read COM_PREPARE_RESULT.ComStmtPreparesend(PacketOutputStream pos)Send directly to socket the sql data.
-
-
-
Method Detail
-
send
public ComStmtPrepare send(PacketOutputStream pos) throws IOException
Send directly to socket the sql data.- Parameters:
pos- the writer- Returns:
- ComStmtPrepare this object
- Throws:
IOException- if connection error occur
-
read
public ServerPrepareResult read(PacketInputStream reader, boolean eofDeprecated) throws IOException, SQLException
Read COM_PREPARE_RESULT.- Parameters:
reader- inputStreameofDeprecated- are EOF_packet deprecated- Returns:
- ServerPrepareResult prepare result
- Throws:
IOException- if connection has errorSQLException- if server answer with error.
-
-