|
#1
|
|||
|
|||
|
Stored Procedures Help please
I have made stored procedures in Oracle...but need to export them to mysql. I have searched on google but cant figure out the syntax.
Here is the oracle procedure: create or replace procedure delgroup (g_id in number) is begin DELETE FROM grouptable WHERE GROUP_ID=g_id; commit; end; I jus basically want to delete the group from the group table..depending on which group id (the arguement) the user types in. How would i do this exact same procedure in mysql? Please some assistance guys
|
|
#2
|
||||
|
||||
|
I don't think you can export a stored procedure from one database to another.
You would need to recreate it in MySQL.
__________________
I don't answer coding questions via PM or Email. Please post a thread in the appropriate forum section. ![]() Please use [Code]your code goes in here[/Code] tags when posting code. Before posting your question, did you look here? Got a question on Linux? Visit our Linux sister site. Modifications Required For VB6 Apps To Work On Vista ![]() Microsoft MVP 2005/2006/2007/2008/2009 |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Using Stored Procedures with SQLDataAdapter? | howiegoo | .NET | 4 | 12-12-2005 11:47 AM |
| DB Independent Application..What abt Stored Procedures | Richard Hsu | VB Classic | 0 | 12-05-2001 05:26 AM |
| Stored procedures and multiple databases | Col | VB Classic | 0 | 10-25-2001 09:34 PM |
| Commit and rollback transaction for nested execution of stored procedures | Alp Guner | Database | 3 | 03-01-2001 11:49 PM |
| Stored procedures and Active X Objects | Nicole Hagler | Database | 0 | 09-06-2000 10:03 AM |