MySQL Forums
Forum List  »  German

Re: Stored Procedures mit expliziter Parameterübergabe
Posted by: Peter Gulutzan
Date: July 16, 2009 09:38AM

> Gibt es es in MySQL ebenfalls eine solche Möglichkeit?

Nein.

Der ANSI/ISO SQL Standard SQL:201x, noch nicht offiziell,
hat diese Syntax:
CREATE PROCEDURE p (p1 INT, p2 INT) …
CALL p(p2 => 5, p1 => 10) …
wie in Oracle und in DB2 (neueste Version).

Vielleicht werden wir die Standard-Syntax folgen,
nach ein paar Jahren.

Peter Gulutzan
Sun Microsystems / MySQL

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Stored Procedures mit expliziter Parameterübergabe
2283
July 16, 2009 09:38AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.