Examples with "a Watcom SQL" and their translation in German
We couldn’t find this entry. Showing approximate results. Check your spelling or suggest adding this term to the dictionary.
In a Watcom SQL procedure, trigger, or batch, a DECLARE CURSOR statement must appear with other declarations, immediately following the BEGIN keyword.
In einer Prozedur, einem Trigger oder einem Batch in Watcom-SQL muss eine DECLARE CURSOR-Anweisung mit anderen Deklarationen auftreten, und zwar unmittelbar nach dem BEGIN-Schlüsselwort.
If a cursor is declared inside a compound statement, it exists only for the duration of that compound statement (whether it is declared in a Watcom SQL or Transact-SQL compound statement).
Wenn ein Cursor in einer zusammengesetzten Anweisung deklariert wird, besteht er nur für die Dauer dieser zusammengesetzten Anweisung (ganz gleich, ob die zusammengesetzte Anweisung in Watcom-SQL oder Transact-SQL geschrieben wurde).
ON EXCEPTION RESUME clause This clause enables Transact-SQL-like error handling to be used within a Watcom SQL syntax procedure.
Other results
Takes a Watcom-SQL statement and rewrites it in the Transact-SQL dialect.
This clause enables Transact-SQL-like error handling to be used within a Watcom-SQL syntax procedure.
The body of a Watcom-SQL procedure is a compound statement, bracketed by BEGIN and END keywords.
The body of a Watcom-SQL procedure is a compound statement, bracketed by BEGIN and END keywords.
In a Watcom-SQL procedure, trigger, or batch, a DECLARE CURSOR statement must appear with other declarations, immediately following the BEGIN keyword.
In einer Prozedur, einem Trigger oder einem Batch in Watcom-SQL muss eine DECLARE CURSOR-Anweisung mit anderen Deklarationen auftreten, und zwar unmittelbar nach dem BEGIN-Schlüsselwort.
If a cursor is declared inside a compound statement, it exists only for the duration of that compound statement (whether it is declared in a Watcom-SQL or Transact-SQL compound statement).
Wenn ein Cursor in einer zusammengesetzten Anweisung deklariert wird, besteht er nur für die Dauer dieser zusammengesetzten Anweisung (ganz gleich, ob die zusammengesetzte Anweisung in Watcom-SQL oder Transact-SQL geschrieben wurde).
The body of a Watcom-SQL procedure or trigger is a compound statement, and variables must be declared with other declarations, such as a cursor declaration (DECLARE CURSOR), immediately following the BEGIN keyword.
Der Hauptteil einer Prozedur oder eines Triggers in Watcom-SQL ist eine zusammengesetzte Anweisung, und Variablen müssen mit anderen Deklarationen, wie z.B. eine Cursordeklaration (DECLARE CURSOR), sofort nach dem BEGIN-Schlüsselwort deklariert werden.
The body of a Watcom-SQL procedure or trigger is a compound statement, and variables must be declared with other declarations, such as a cursor declaration (DECLARE CURSOR), immediately following the BEGIN keyword.
Der Hauptteil einer Prozedur oder eines Triggers in Watcom-SQL ist eine zusammengesetzte Anweisung, und Variablen müssen mit anderen Deklarationen, wie z.B. eine Cursordeklaration (DECLARE CURSOR), sofort nach dem BEGIN-Schlüsselwort deklariert werden.
You can make a Watcom-SQL dialect procedure handle errors in a Transact-SQL-like manner by supplying the ON EXCEPTION RESUME clause to the CREATE PROCEDURE statement
Sie können eine Prozedur in Watcom-SQL-Dialekt dazu veranlassen, dass sie Fehler in einer Transact-SQL-ähnlichen Weise behandelt, indem Sie die ON EXCEPTION RESUME-Klausel für die CREATE PROCEDURE-Anweisung bereitstellen
To prevent this, qualify the table reference in the statement (user1.table1, instead of just table1). ON EXCEPTION RESUME clause This clause enables Transact-SQL-like error handling to be used within a Watcom-SQL syntax procedure.