RealTimeUpdate()
RealTimeUpdate(Familie
,Spalte
,Wert
,UpdateSpalte
,UpdateWert
)
UpdateSpalte
in der Zeile, bei
der die Spalte UpdateSpalte
in der Familie Familie
mit Wert
übereinstimmt, wird auf den Wert
UpdateWert
aktualisiert.; bei der Situation wie im Beispiel zu RealTime() könnten wir diesen ; Befehl ausführen: exten => 123,1,RealTimeUpdate(sipusers,ext,5678,vorname,Peter) ; resultierender SQL-Befehl: UPDATE sip_users SET vorname = 'Peter' WHERE ext = '5678'
————————| 1.2 |————————| 1.4 | | |
-= Info about application 'RealTimeUpdate' =-
[Synopsis]
Realtime Data Rewrite
[Description]
Use the RealTime config handler system to update a value
RealTimeUpdate(<family>|<colmatch>|<value>|<newcol>|<newval>)
The column <newcol> in 'family' matching column <colmatch>=<value> will be
updated to <newval>. REALTIMECOUNT will be set with the number of rows
updated or -1 if an error occurs.
--- in Asterisk 1.2
+++ in Asterisk 1.4
@@ -7,4 +7,6 @@
Use the RealTime config handler system to update a value
RealTimeUpdate(<family>|<colmatch>|<value>|<newcol>|<newval>)
- The column <newcol> in 'family' matching column <colmatch>=<value> will be updated to <newval>
+ The column <newcol> in 'family' matching column <colmatch>=<value> will be
+ updated to <newval>. REALTIMECOUNT will be set with the number of rows
+ updated or -1 if an error occurs.