DBInsertStage

From CCIL
Revision as of 13:22, 2 June 2017 by Atanas.ilchev (Talk | contribs) (Created page with "Inserts a row into the database. == Overview == {| |- | '''jar''' | ccil-common-sql |- | '''recommended name''' | dbinsert |- | '''class''' | net.ccil.stages.sql.DBInse...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Inserts a row into the database.

Overview

jar ccil-common-sql
recommended name dbinsert
class net.ccil.stages.sql.DBInsertStage
location /ccil-api/src/main/java/net/ccil/sql/stages/DBInsertStage.java
svn svn://svn.code.sf.net/p/ccil/code/trunk/src/common/sql/src/main/java/net/ccil/sql/stages/DBInsertStage.java

Parameters

Name Type Description Comment
cols java.lang.String Comma-separated list with the column names.
vals java.lang.String Comma-separated list with the names of the variables which hold the values.

Registration

service:dbinsert	rdf:type	entity:service ;				
			entity:implementation	"net.ccil.stages.sql.DBInsertStage" ;
			entity:classpath	"" ;
			entity:arguments	"" .

Context

TBA

Example

TBA

See Also