>
> > PreparedStatement ps =
> > connection.prepareStatement(rawSQLQuery1);
> > ResultSet rs = ps.executeQuery();
> > while (rs.next()) {
> > //put you logic here with resultSet data
> > }
> > catch(Exception e){
> > //Handle Exception
> > }
> >
> > On 9/20/2018 1:18 PM, Madhi Krishnan wrote:
> > > Hey all can anyone please tell me how to use raw sql query in ofbiz..
> > > If you have any sources or example it will be better..
> > > Thank You
> > >
> >
> >
>
while (rs.next()) {
> //put you logic here with resultSet data
> }
> catch(Exception e){
> //Handle Exception
> }
>
> On 9/20/2018 1:18 PM, Madhi Krishnan wrote:
> > Hey all can anyone please tell me how to use raw sql query in ofbiz..
> > If you have any sources or example it will be better..
> > Thank You
> >
>
>
PreparedStatement ps =
connection.prepareStatement(rawSQLQuery1);
ResultSet rs = ps.executeQuery();
while (rs.next()) {
//put you logic here with resultSet data
}
catch(Exception e){
//Handle Exception
}
On 9/20
nyone please tell me how to use raw sql query in ofbiz..
If you have any sources or example it will be better..
Thank You
Hey all can anyone please tell me how to use raw sql query in ofbiz..
If you have any sources or example it will be better..
Thank You