Difference between revisions of "DBInsertStage"

From CCIL
Jump to: navigation, search
(Created page with "Inserts a row into the database. == Overview == {| |- | '''jar''' | ccil-common-sql |- | '''recommended name''' | dbinsert |- | '''class''' | net.ccil.stages.sql.DBInse...")
 
(Overview)
 
Line 14: Line 14:
 
|-
 
|-
 
| '''location'''
 
| '''location'''
| /ccil-api/src/main/java/net/ccil/sql/stages/DBInsertStage.java
+
| /common/sql/src/main/java/net/ccil/sql/stages/DBInsertStage.java
 
|-
 
|-
 
| '''svn'''
 
| '''svn'''

Latest revision as of 13:24, 2 June 2017

Inserts a row into the database.

Overview

jar ccil-common-sql
recommended name dbinsert
class net.ccil.stages.sql.DBInsertStage
location /common/sql/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