I'm not completely clear on your question, but are you referring to things that you can do in VB for example like simply specifying a table name instead of a complete SQL SELECT statement? If so, then no. JDBC requires that you actually execute SQL statements.
Hibernate (http://www.hibernate.org) is a framework that allows you do object/relational mapping from Java. It has a number of different ways that you can get data from the database.
Not sure if I understood your question right, but I hope this helps.
Jeff Ash<br /><a href="http://www.excellentiasoftware.com" target="_blank" rel="nofollow">Excellentia Software</a>
Suman Sharma
Ranch Hand
Joined: May 16, 2005
Posts: 72
posted
0
Statement and PreparedStatement objects can be used to retrieve data from the database.
Prithiraj Sen Gupta
Ranch Hand
Joined: Sep 13, 2006
Posts: 92
posted
0
I know that to retrive data from database one should write Stored Prcocedures. But there are some other ways to do it. Bear Bibeault, Moderator of Html and JavaScript, told me that he dont uses stored procedure. He adviced me to Post a topic here. The discussion between With Him can be found HERE.
Thanks & Regards
Prithiraj
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35224
7
posted
0
I know that to retrive data from database one should write Stored Prcocedures.
How have you come to know that? Whether that's true or not depends a lot on the circumstances of the application. It's definitely not a case of "should do".
Prithiraj Sen Gupta
Ranch Hand
Joined: Sep 13, 2006
Posts: 92
posted
0
Sorry, I meant
I knew
not
I know
Prithiraj Sen Gupta
Ranch Hand
Joined: Sep 13, 2006
Posts: 92
posted
0
Can you let me know any other way of retrieving.
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32611
4
posted
0
I have been doing a bit of Databases, and people recommend stored procedures because they can be reused. You get a stored procedure which reads likeWhat that does is to encapsulate the query into a procedure. If you miss out the encapsulation you can use the line starting SELECT on its own, followed by ";" or whatever your database uses as a line terminator. [ May 01, 2007: Message edited by: Campbell Ritchie ]
Prithiraj Sen Gupta
Ranch Hand
Joined: Sep 13, 2006
Posts: 92
posted
0
Yes I know about stored procedures. But I want to know about alternate ways.