Autor Beitrag
day
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 107



BeitragVerfasst: Di 30.09.03 10:36 
hallo

ich möchte werte in meiner datenbank mittels parameter ändern. wie kann ich das in meinen select befehl einbauen.

ausblenden Quelltext
1:
2:
           Select  WS :=WS
           DATUM := DATUM


From INFO

der update befehl sieht dan folgendermassen aus

ausblenden Quelltext
1:
update INFO set WS=:WS where DATUM := DATUM					


Moderiert von user profile iconKlabautermann: Code-Tags hinzugefügt.
UGrohne
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Veteran
Beiträge: 5502
Erhaltene Danke: 220

Windows 8 , Server 2012
D7 Pro, VS.NET 2012 (C#)
BeitragVerfasst: Di 30.09.03 11:06 
Öhm, ich frag mich gerade, was die ganzen komisch gesetzten Doppelpunkte da sollen. Gib mal etwas mehr Code und überhaupt: Was ist das Problem? So funktioniert das auf jeden Fall nicht.
Klabautermann
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Veteran
Beiträge: 6366
Erhaltene Danke: 60

Windows 7, Ubuntu
Delphi 7 Prof.
BeitragVerfasst: Di 30.09.03 11:14 
Hallo,

machn wir es mal am Beispiel des Update Schnipzels:
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
MyQuery.Close;
MyQuery.SQL.Clear;
MyQuery.SQL.ADD('update INFO set WS=:WS where DATUM=:DATUM');
MyQuery.ParamByName('WS').AsString := 'Was weiß ich';
MyQuery.ParamByName('Datum').AsDateTime := now;
MyQuery.Execute;

vom Prinzieb müsste das so laufen.

Gruß
Klabautermann
ShadowThief
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 278



BeitragVerfasst: Di 30.09.03 11:17 
ich versteh das jetzt auch nicht so ganz,
aber ich versuch mal dir ein bisschen beispielcode zu geben:

per BDE:

ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
var
  qry: TQuery;

begin

  qry := TQuery.Create(nil)
  qry.DatabaseName := YourBDEDatabase.DatabaseName;

  qry.SQL.Text := 'UPDATE info SET ws = :WS WHERE datum = :DATUM ';
  qry.ParamByName('WS').AsInteger := 4;  // .AsInteger ist eine Vermutung;
  qry.ParamByName('DATUM').AsDate := Now;
  qry.ExecSQL;

  qry.Free;



per ADO:

ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
var
  qry: TADOQuery;

begin

  qry := TADOQuery.Create(nil)
  qry.Connection := YourADOConnection;

  qry.SQL.Text := 'UPDATE info SET ws = :WS WHERE datum = :DATUM ';
  qry.Parameters.ParamByName('WS').DataType := ftInteger;
  qry.Parameters.ParamByName('WS').Value := 4;
  qry.Parameters.ParamByName('WS').DataType := ftDate;
  qry.Parameters.ParamByName('WS').Value := Now;
  qry.ExecSQL;

  qry.Free;


shadow.
day Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 107



BeitragVerfasst: Di 30.09.03 11:38 
danke für eure hilfe
es hat geklappt
day Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 107



BeitragVerfasst: Di 30.09.03 11:46 
noch ne andere frage
was versteht man unter fetchtype?
bekomme irgend so eine fehlermeldung
(fetchttype liegt ausserhalb des bereichs ODBC State=S1106