createPingCommand static method

DbCommand createPingCommand(
  1. Db db
)

Implementation

static DbCommand createPingCommand(Db db) {
  return createQueryDbCommand(db, {'ping': 1});
}