Re: ???Stored Procedures In PL/SQL???
From: salvi <salvi_at_gmx.ch>
Date: 16 Aug 2001 01:02:36 -0700
Message-ID: <d0e08f90.0108160002.3d34bcb_at_posting.google.com>
..
}
Date: 16 Aug 2001 01:02:36 -0700
Message-ID: <d0e08f90.0108160002.3d34bcb_at_posting.google.com>
workaround..
just try something like this.. (you don't need a stored procedure?! don't you?)
String sql = "select * from emp where name = \'Ted\'" ResultSet rs = <Statement>.executeQuery(sql);
now..
for(..) { rs.next(); rs.getString('name');
..
}
hope, that helps!
for further reference see http://java.sun.com/j2se/1.3/docs/api/index.html
Received on Thu Aug 16 2001 - 10:02:36 CEST