Difference between revisions of "DBUpdateStage"
From CCIL
(Created page with "Performs an UPDATE operation against a database. == Overview == {| |- | '''jar''' | ccil-common-sql |- | '''recommended name''' | db-update |- | '''class''' | net.ccil....") |
(No difference)
|
Latest revision as of 14:21, 2 June 2017
Performs an UPDATE operation against a database.
Overview
jar | ccil-common-sql |
recommended name | db-update |
class | net.ccil.stages.sql.DBUpdateStage |
location | /common/sql/src/main/java/net/ccil/sql/stages/DBUpdateStage.java |
svn | svn://svn.code.sf.net/p/ccil/code/trunk/src/common/sql/src/main/java/net/ccil/sql/stages/DBUpdateStage.java |
Parameters
Name | Type | Description | Comment |
---|---|---|---|
table | java.lang.String | The name of the table to be updated. | |
name | java.lang.String | The name of the column. | |
expr | java.lang.String | The expression after the SET clause. | |
where | java.lang.String | The WHERE clause if any. | |
limit | java.lang.String | The LIMIT clause if any. |
Registration
service:db-update rdf:type entity:service ; entity:implementation "net.ccil.stages.sql.DBUpdateStage" ; entity:classpath "" ; entity:arguments "" .
Context
TBA
Example
TBA