Creates a insert SQL.
Namespace: LiteRepositoryAssembly: LiteRepository (in LiteRepository.dll) Version: 2.0.4
Syntaxpublic abstract string Insert(
string tableName,
string fields,
string values,
bool isIdentity
)
Parameters
- tableName
- Type: SystemString
Name of the table. - fields
- Type: SystemString
Comma-separated list of fields. - values
- Type: SystemString
Comma-separated list of values. - isIdentity
- Type: SystemBoolean
Determines whether a table is a table with identity key.
Return Value
Type:
StringA string with a insert query.
See Also