本文整理汇总了Java中com.mysql.jdbc.Buffer.setPosition方法的典型用法代码示例。如果您正苦于以下问题:Java Buffer.setPosition方法的具体用法?Java Buffer.setPosition怎么用?Java Buffer.setPosition使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.mysql.jdbc.Buffer
的用法示例。
在下文中一共展示了Buffer.setPosition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: nextAuthenticationStep
import com.mysql.jdbc.Buffer; //导入方法依赖的package包/类
public boolean nextAuthenticationStep(Buffer fromServer, List<Buffer> toServer) throws SQLException {
toServer.clear();
Buffer bresp = new Buffer(StringUtils.getBytes(this.password != null ? this.password : ""));
bresp.setPosition(bresp.getBufLength());
int oldBufLength = bresp.getBufLength();
bresp.writeByte((byte) 0);
bresp.setBufLength(oldBufLength + 1);
bresp.setPosition(0);
toServer.add(bresp);
return true;
}
示例2: nextAuthenticationStep
import com.mysql.jdbc.Buffer; //导入方法依赖的package包/类
public boolean nextAuthenticationStep(Buffer fromServer, List<Buffer> toServer) throws SQLException {
toServer.clear();
Buffer bresp = new Buffer(StringUtils.getBytes(this.password != null ? this.password : ""));
bresp.setPosition(bresp.getBufLength());
int oldBufLength = bresp.getBufLength();
bresp.writeByte((byte)0);
bresp.setBufLength(oldBufLength + 1);
bresp.setPosition(0);
toServer.add(bresp);
return true;
}