本文整理匯總了Java中com.alibaba.cobar.server.ServerConnection.setLastInsertId方法的典型用法代碼示例。如果您正苦於以下問題:Java ServerConnection.setLastInsertId方法的具體用法?Java ServerConnection.setLastInsertId怎麽用?Java ServerConnection.setLastInsertId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.alibaba.cobar.server.ServerConnection
的用法示例。
在下文中一共展示了ServerConnection.setLastInsertId方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: okResponse
import com.alibaba.cobar.server.ServerConnection; //導入方法依賴的package包/類
@Override
public void okResponse(byte[] data, MySQLConnection conn) {
boolean executeResponse = false;
try {
executeResponse = conn.syncAndExcute();
} catch (UnsupportedEncodingException e) {
executeException(conn);
}
if (executeResponse) {
conn.setRunning(false);
ServerConnection source = session.getSource();
if (source.isAutocommit()) {
session.clearConnections();
}
endRunning();
OkPacket ok = new OkPacket();
ok.read(data);
source.setLastInsertId(ok.insertId);
buffer = source.writeToBuffer(data, buffer);
source.write(buffer);
}
}
示例2: handleSuccessOK
import com.alibaba.cobar.server.ServerConnection; //導入方法依賴的package包/類
/**
* @throws nothing never throws any exception
*/
private void handleSuccessOK(BlockingSession ss, RouteResultsetNode rrn, boolean autocommit, OkPacket ok) {
if (decrementCountAndIsZero()) {
if (isFail.get()) {
notifyFailure(ss);
return;
}
try {
ServerConnection source = ss.getSource();
ok.packetId = ++packetId;// OK_PACKET
ok.affectedRows = affectedRows;
if (insertId > 0) {
ok.insertId = insertId;
source.setLastInsertId(insertId);
}
if (source.isAutocommit()) {
if (!autocommit) { // 前端非事務模式,後端事務模式,則需要自動遞交後端事務。
icExecutor.commit(ok, ss, ss.getTarget().size());
} else {
ss.release();
ok.write(source);
}
} else {
ok.write(source);
}
source.recycle(buffer);
} catch (Exception e) {
LOGGER.warn("exception happens in success notification: " + ss.getSource(), e);
}
}
}
示例3: setLastInsertId
import com.alibaba.cobar.server.ServerConnection; //導入方法依賴的package包/類
private void setLastInsertId(BinaryPacket bin, ServerConnection sc) {
OkPacket ok = new OkPacket();
ok.read(bin);
if (ok.insertId > 0) {
sc.setLastInsertId(ok.insertId);
}
}