what is glide record ? why we use glide record

Kishore Babu S
Tera Contributor

what is glide record ? why we use glide record

1 ACCEPTED SOLUTION

Harsh Vardhan
Giga Patron

glide record we use to query the data into the database.

if you want to perform any operation into the data base eg: select, update, delete then you have to use glide record.

Kindly refer the doc link below.

 

https://docs.servicenow.com/bundle/jakarta-application-development/page/script/glide-server-apis/con...

View solution in original post

2 REPLIES 2

Harsh Vardhan
Giga Patron

glide record we use to query the data into the database.

if you want to perform any operation into the data base eg: select, update, delete then you have to use glide record.

Kindly refer the doc link below.

 

https://docs.servicenow.com/bundle/jakarta-application-development/page/script/glide-server-apis/con...

Harsh Vardhan
Giga Patron

GlideRecord is a special Java class (GlideRecord.java) that can be used in JavaScript exactly as if it was a native JavaScript class.

GlideRecord:
  • is used for database operations instead of writing SQL queries.
  • is an object that contains zero or more records from one table. Another way to say this is that a GlideRecord is an ordered list.

 

 

Go through this video link.