dromara / easy-query

java/kotlin high performance lightweight solution for jdbc query,support oltp and olap query,一款java下面支持强类型、轻量级、高性能的ORM,致力于解决jdbc查询,拥有对象模型筛选、隐式子查询、隐式join
http://www.easy-query.com
Apache License 2.0
538 stars 55 forks source link

增加执行存储过程的方法 #258

Open yrong0605 opened 2 months ago

yrong0605 commented 2 months ago

能否增加调用存储过程的方法,存储过程可能会有多个结果集,执行后可返回类似于.net的dataset数据集

xuejmnet commented 2 months ago
DataSource defaultDataSource = easyEntityQuery.getRuntimeContext().getDataSourceManager().getDefaultDataSource();
        Connection connection1 = defaultDataSource.getConnection();

这边的建议是直接操作DataSource来操作原生jdbc的链接框架的支持不一定马上能实现 也可以单独在spring或者其他框架中注入DataSource来操作