Is there any alternative to stored procedures, secure and fast as well as stored procs. i know only Hibernate. Is there any other technologies like that?
|
|
|||||||||||||||
|
|
|
You can do dynamic SQL as secure and fast as stored procedures can be, it just takes some work. Of course, it takes some work to make stored procedures secure and fast also. |
||||||||||||
|
|
|
.netTiers is an alternate to Hibernate. |
||
|
|
|
Hibernate is an object/relational persistence service. Stored procedure is a subroutine inside a relational database system. Not the same thing. If you want alternative to Hibernate, you can check for iBatis for Spring |
||
|
|
|
|
Yes. you can use dynamic sql, but I personally like stored procedures better. 1) If you're using MS SQL Server, it will generate a query plan which should enable the stored procedure to execute faster than simple dynamic sql. 2) It can be easier an more effective to fix a bug in a stored procedure, expecially if your application calls that procedure in several spots. 3) I find it's nice to encapsulate database logic in the database rather than in embedded sql or application config file. 4) Creating stored procedure into the database will allow sql server to do some syntax, and validation checks at design time. |
||||||||||||||||||
|
|
|
If you are working in a .Net envorionment check out SubSonic. Simple to use and extremely powerful. |
||
|
|
|
|
@Jeremy I dont know what idiot voted you down. +1 from me @Poster. Parameterized SQL (it can be Dynamic but not necessarily) will execute with the same safety and efficiency as stored Procs. |
||||||||||||
|
|
|
Stored procedures are a place to put code (SQL) which executes on the database, so I understand the question to mean "is there any other way to package up the code which runs on the database?" There are several answers:
|
||
|
|
|
|
Hmm, seems to me that the obvious alternative to stored procedures is to write application code. Instead of, say, writing a store procedure to post a debit every time a credit is posted, you could write application code that writes both. Maybe I'm being too simplistic here or missing the point of the question. |
||
|
|
|
|
..from Wikipedia I think you need to read this article and reframe your question. Hibernate has nothing to do with stored procs. |
||
|
|
|
|
It'd help a little more if you said why you are looking for alternatives, what about stored procs do you not like? Some databases (eg. PostgreSQL) also allow you to write stored procedures in different languages. So if you really want to you can write them in Python or Java or the like, instead of SQL. |
||
|
|
