Carm

Results 6 issues of Carm

如项目 [TimeReward](https://github.com/CarmJos/TimeReward) 中对于协议部分使用了 `` 折叠。 希望后续版本能支持将该折叠转换为[spoiler]标签。

My plugin using Scoreboard Team functions to disable collision and provide transparent player effects, but when i using BTLP with `DYNAMIC` method, all functions cannot work correctly. Is there any...

### **功能简述** 令 SQLQuery 支持 `steam()` 操作。 ### **功能参考**(可选) 通过令 SQLQuery 支持 `steam()` 操作,可以让其在链式调用的使用中更加便捷通畅。如: ```java query.stream().map(s -> s.getString("name")).forEach(System.out::println); ```

enhancement

### **功能简述** 支持 MySQL 的联表查询(包括内联查询与外联查询)。 ### **需求来源** 联表查询在平时的项目中经常遇到,若支持该功能则可以进行方便快捷的查询,加快开发速度。 ### **功能参考**(可选) [【MySQL】联表查询总结](https://www.jianshu.com/p/1d02f1e9aad1)

enhancement

### **功能简述** 通过Upsert实现数据表单个数据的改动,避免多次查询。 ### **需求来源** 有些情况下,只需要针对表中单个数据进行增加或减少,且对应的数据并未获取,此时便需要进行`获取->修改->写入`三个操作,十分不便。 因此,若支持通过Upsert针对该数据进行简单计算的修改,即可大大的增加整体效率。 ### **功能参考**(可选) ```java public void updateStats(long uid, StatsType type, int modify) { if (modify == 0) return; String tableName = DBTables.STATS.getTableName(); getSQLManager().executeSQL( "INSERT...

enhancement

Sometimes we want to display originally usages to players instead of auto-generated one, so maybe we could support a annotation like `@UsageExecute` used in command classes, which will be called...

feature
API