Click or drag to resize

SQLInserterExecute Method

Overload List
  NameDescription
Public methodExecute(String)
Execute the SQL INSERT statement. Note that embedded functions are always resolved. Requires that the object was created with the SQLInserter(IDatabase, String) constructor. Note that if you want to obtain the value of the IDENTITY value for the newly created record you must use the Execute(String, Int32, Boolean, ExecuteOptions) overload.
Public methodExecute(String, Boolean)
Execute the SQL INSERT statement. Note that embedded functions are always resolved. Requires that the object was created with the SQLInserter(IDatabase, String) constructor. Note that if you want to obtain the value of the IDENTITY value for the newly created record you must use the Execute(String, Int32, Boolean, ExecuteOptions) overload.
Public methodExecute(String, Int32)
Execute the SQL INSERT statement. Note that embedded functions are always resolved. Requires that the object was created with the SQLInserter(IDatabase, String) constructor. Note that if you want to obtain the value of the IDENTITY value for the newly created record you must use the Execute(String, Int32, Boolean, ExecuteOptions) overload.
Public methodExecute(IDatabase, String)
Execute the SQL INSERT statement. Note that embedded functions are always resolved.
Public methodExecute(IDatabase, String, Int32)
Execute the SQL INSERT statement. Note that embedded functions are always resolved.
Public methodExecute(String, Int32, Boolean, ExecuteOptions)
Execute the SQL INSERT statement. Note that embedded functions are always resolved unless an executeOptions parameter is provided (without ResolveEmbedded set). Requires that the object was created with the SQLInserter(IDatabase, String) constructor.
Top
See Also