Can someone please tell me...

P

Paul Clement

¤ Really? I do it all the time. :)
¤

Yes, I've never had to do it, but I didn't say you couldn't. ;-)

He was asking about Oracle though so you're going to have to change your code a bit. ;-)


Paul
~~~~
Microsoft MVP (Visual Basic)
 
G

Guest

Personally I try to avoid stored procedures so our app can be easily moved
between database vendors.
 
M

Matt Noonan

Not a problem! ;-)

BEGIN
SELECT EMPSEQ.NEXTVAL INTO :EMPLOYEE_ID FROM DUAL;
INSERT INTO EMPLOYEES (EMPLOYEE_ID, etc.) VALUES :)EMPLOYEE_ID, etc.);
END
 
M

Matt Noonan

Which is a difficult challenge, even when you're talking about Access and
SQL Server. Getting schemas to match between vendors is the primary
obstacle, and it makes writing portable parameterized queries difficult.

Even with the Enterprise Library... :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top