Hallo,
ich wollte eine StoredProc in einer Datenbank auf einem MS-SQL2000 Server speichern.
Delphi-Quellcode:
ResourceString
CreateDeleteIPProc = 'CREATE PROCEDURE DeleteIP ' + #13#10#9 +
'@Point as char(15) ' + #13#10 +
'AS ' + #13#10 +
'DELETE [dbo].[%s] WHERE DPN=@Point ' + #13#10 +
'GO';
procedure TForm1.Button1Click(Sender: TObject);
begin
ADOCommand1.CommandText := Format(CreateDeleteIPProc, ['Tab_IP']);
ADOCommand1.Execute;
end;
Beim Ausführen bekomme ich jedoch die Fehlermeldung "Falsche Syntax in der Nähe von 'GO'".
Gibt es noch einen anderen Weg die StoredProc zu speichern?
Danke