Search these areas:
Help
Support Forums
Product Info



Introduction
DataWeb: What's New
Creating an Application
The DataWeb Designer
Application Management
Data Tables
Data Tables
Views
Templates
Components
Data Analysis
Members
Security
Importing
Exporting
FTP
JavaScript
Object Model
JavaScript Objects
General Scripting Objects
Data Access Objects
cmdDelete Object
cmdInsert Object
cmdSelect Object
cmdUpdate Object
Data Access Method Arguments
Field Object
Fields Collection
Index Object
Indexes Collection
previous Object
record Object
Resultset Object
Table Object
-bulkDelete
-bulkInsert
-bulkUpdate
-delete
-exists (instance)
-exists (prototype)
-getCaption
-getDefaultDisplayField
-getDefaultSortField
-getDescription
-getPrimaryKey
-getFolderPath
-insert
-isValid
-refresh
-remove(instance)
-remove (prototype)
-select
-setCaption
-setDefaultDisplayField
-setDefaultSortField
-setDescription
-setPrimaryKey
-update
Tables Collection
TextImporter Object
Settings Object
View Object
Web Object
File Access Objects
Http Client Objects
Security and Membership Objects
Document Object Model (DOM)
Error Descriptions
Object Model Extensions
Full-Text Search
Domain and Email Hosting
HotBlock Modules
Account Management
Glossary
New Responsive UI Module





DataWeb Help
Support Forums
Tutorial
Script Library
Knowledge Base

Home > Support

DataWeb User's Guide

Table.insert()
Syntax

Table.insert(tablename, fields)

Arguments Description
tablename Specify the datatable on which to perform the query.
fields Specify the field-value pairs, i.e., the fields to receive new data and the data to insert into the datatable.

Returns

Returns an object. The properties of this object correspond to the fields of the data table, and the values of the properties correspond to the data inserted into the fields.

Description

Inserts one row. Throws an exception in the case of failure. Fields not specified get their values from the schema defaults.

Examples

The first example inserts one record into a data table.
      //Adds one record, i.e., one row, to the data table "AddressBook"
   Table.insert("AddressBook", {LastName:"Smith",
   FirstName:"Mark", Email:"marksmith@address.com"});


The second example illustrates the object returned when the update() method is executed.
   var rec = Table.insert("AddressBook", {FirstName:"Jim", 
   LastName:"Smith", email:"JimSmith@address.com"});
      //returns 'JimSmith@address.com'
   return rec.email;
Related Topics

Table Object, Table.update(), Table.delete()
Affiliate | Partner | Terms of Use | Privacy Policy | Contact Us | Pricing | Bring DataWeb In-House    
Email Us