{"id":2793,"date":"2026-04-30T16:57:54","date_gmt":"2026-04-30T08:57:54","guid":{"rendered":"https:\/\/tekno.bali-island.com\/?p=2793"},"modified":"2026-04-30T16:57:55","modified_gmt":"2026-04-30T08:57:55","slug":"explanation-of-stored-procedures-and-cursors-in-databases","status":"publish","type":"post","link":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/","title":{"rendered":"Explanation of Stored Procedures and Cursors in Databases"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Stored Procedure<\/strong><\/h2>\n\n\n\n<p>A stored procedure is a collection of SQL commands, or can be described as a subprogram with a specific name stored in the database. The process performed by a stored procedure involves receiving input parameters, returning values in the form of output parameters to the caller, and performing data manipulation operations on the database, executed by a program such as a trigger or another stored procedure. The use of stored procedures has several advantages:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Improves application performance, because stored procedures run faster than uncompiled SQL commands sent by the application.<\/li>\n\n\n\n<li>Reduces network traffic between the database and application, because there is no need to send uncompiled SQL statements.<\/li>\n\n\n\n<li>Can be used repeatedly and transparently across all applications.<\/li>\n<\/ul>\n\n\n\n<p>However, stored procedures also have some disadvantages:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Debugging is not possible.<\/li>\n\n\n\n<li>Increases the load on the server hardware.<\/li>\n\n\n\n<li>Writing them is not easy and requires specific knowledge.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Syntax in Stored Procedure<\/strong><\/h3>\n\n\n\n<p>The syntax found in stored procedures:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Syntax for writing a stored procedure<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">DELIMITER \/\/\n\nCREATE PROCEDURE procedure_name()\n\nBEGIN\n\nsql query\n\nEND \/\/\n\nDELIMITER ;<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Syntax for calling a stored procedure<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CALL procedure_name()<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Syntax for declaring a variable in a stored procedure<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DECLARE variable_name datatype(length) DEFAULT value;<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Syntax for stored procedure with parameters<\/li>\n<\/ul>\n\n\n\n<p>There are three modes for parameters:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>IN, which is the default mode where any changes inside the stored procedure do not affect the parameter.<\/li>\n\n\n\n<li>OUT, a mode that changes the parameter value and sends it back to the caller.<\/li>\n\n\n\n<li>INOUT, a mode that combines IN and OUT.<\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Example syntax for defining a stored procedure with parameters:<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DELIMITER \/\/\n\nCREATE PROCEDURE procedure_name([mode] [parameter]\n[data_type])\n\nBEGIN\n\nsql query\n\nEND \/\/\n\nDELIMITER ;<\/pre>\n\n\n\n<p>Example syntax for calling a stored procedure with parameters:<\/p>\n\n\n\n<p>text<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CALL procedure_name([parameter_value])<\/pre>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Cursor<\/strong><\/h2>\n\n\n\n<p>A cursor is an object in a database used to handle the processing of specific SQL statements, or can be described as a variable that holds the result of a query containing more than one row or record. A cursor can iterate over the number of rows in a table. There are several characteristics of a cursor:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Cannot be updated (read only).<\/li>\n\n\n\n<li>Cursor moves only in one direction (non-scrollable).<\/li>\n\n\n\n<li>Updating the table referenced by the cursor is not recommended because it may produce unwanted results (asensitive).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Syntax in Stored Procedure<\/strong><\/h3>\n\n\n\n<p>The syntax found in cursors:<\/p>\n\n\n\n<p>There are several steps in creating a cursor:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Declare, the step to declare the cursor, with the syntax:<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DECLARE cursor_name CURSOR FOR\nSELECT_statement;<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open, the step to open or activate the cursor, with the syntax:<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">OPEN cursor_name;<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Fetch, the step to retrieve data from the cursor and then store it in a variable, with the syntax:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">FETCH cursor_name INTO list_of_variables<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Close, the step to deactivate the cursor, with the syntax:<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CLOSE cursor_name<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Differences Between Stored Procedure and Cursor<\/strong><\/h2>\n\n\n\n<p>The difference between a stored procedure and a cursor is that a stored procedure only holds declaration commands from MySQL, whereas a cursor holds the query result and also acts as a pointer to that result. This allows the cursor to perform complex operations that cannot be done by a stored procedure. One such operation is iterating over records.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Stored Procedure A stored procedure is a collection of SQL commands, or can be described as a subprogram with a specific name stored in the database. The process performed by a stored procedure involves receiving input parameters, returning values in the form of output parameters to the caller, and performing data manipulation operations on the database, executed by a program such as a trigger or another stored procedure. The use of stored procedures has several advantages: However, stored procedures also have some disadvantages: Syntax in Stored Procedure The syntax found in stored procedures: DELIMITER \/\/ CREATE PROCEDURE procedure_name() BEGIN sql query END \/\/ DELIMITER ; CALL procedure_name() DECLARE variable_name datatype(length) DEFAULT value; There are three modes for parameters: Example syntax for defining a stored procedure with parameters: DELIMITER \/\/ CREATE PROCEDURE procedure_name([mode] [parameter] [data_type]) BEGIN sql query END \/\/ DELIMITER ; Example syntax for calling a stored procedure with parameters: text CALL procedure_name([parameter_value]) Cursor A cursor is an object in a database used to handle the processing of specific SQL statements, or can be described as a variable that holds the result of a query containing more than one row or record. A cursor can iterate over the number of &hellip;<\/p>\n","protected":false},"author":1,"featured_media":2784,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[93],"tags":[],"class_list":["post-2793","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programming"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Explanation of Stored Procedures and Cursors in Databases<\/title>\n<meta name=\"description\" content=\"A complete explanation of stored procedures and cursors, starting from the definition, examples of syntax and the differences between the two.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Explanation of Stored Procedures and Cursors in Databases\" \/>\n<meta property=\"og:description\" content=\"A complete explanation of stored procedures and cursors, starting from the definition, examples of syntax and the differences between the two.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/\" \/>\n<meta property=\"og:site_name\" content=\"Bali Island Tekno\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/Wilanpedia\/61575048527927\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-30T08:57:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-30T08:57:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Stored-Procedure-Cursor.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Wilan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Wilan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/\"},\"author\":{\"name\":\"Wilan\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/person\\\/945426dbaeb9dc9d603797b51b1b7e42\"},\"headline\":\"Explanation of Stored Procedures and Cursors in Databases\",\"datePublished\":\"2026-04-30T08:57:54+00:00\",\"dateModified\":\"2026-04-30T08:57:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/\"},\"wordCount\":477,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Stored-Procedure-Cursor.webp\",\"articleSection\":[\"Programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/\",\"name\":\"Explanation of Stored Procedures and Cursors in Databases\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Stored-Procedure-Cursor.webp\",\"datePublished\":\"2026-04-30T08:57:54+00:00\",\"dateModified\":\"2026-04-30T08:57:55+00:00\",\"description\":\"A complete explanation of stored procedures and cursors, starting from the definition, examples of syntax and the differences between the two.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#primaryimage\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Stored-Procedure-Cursor.webp\",\"contentUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Stored-Procedure-Cursor.webp\",\"width\":1920,\"height\":1080,\"caption\":\"Stored Procedure & Cursor\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/explanation-of-stored-procedures-and-cursors-in-databases\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Explanation of Stored Procedures and Cursors in Databases\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/\",\"name\":\"Bali Island Tekno\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#organization\",\"name\":\"Bali Island Tekno\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Logo-Tekno-Bali-Island.webp\",\"contentUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Logo-Tekno-Bali-Island.webp\",\"width\":512,\"height\":512,\"caption\":\"Bali Island Tekno\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/Wilanpedia\\\/61575048527927\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/person\\\/945426dbaeb9dc9d603797b51b1b7e42\",\"name\":\"Wilan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g\",\"caption\":\"Wilan\"},\"sameAs\":[\"https:\\\/\\\/tekno.bali-island.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Explanation of Stored Procedures and Cursors in Databases","description":"A complete explanation of stored procedures and cursors, starting from the definition, examples of syntax and the differences between the two.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/","og_locale":"en_US","og_type":"article","og_title":"Explanation of Stored Procedures and Cursors in Databases","og_description":"A complete explanation of stored procedures and cursors, starting from the definition, examples of syntax and the differences between the two.","og_url":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/","og_site_name":"Bali Island Tekno","article_publisher":"https:\/\/www.facebook.com\/people\/Wilanpedia\/61575048527927\/","article_published_time":"2026-04-30T08:57:54+00:00","article_modified_time":"2026-04-30T08:57:55+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Stored-Procedure-Cursor.webp","type":"image\/webp"}],"author":"Wilan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Wilan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#article","isPartOf":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/"},"author":{"name":"Wilan","@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/person\/945426dbaeb9dc9d603797b51b1b7e42"},"headline":"Explanation of Stored Procedures and Cursors in Databases","datePublished":"2026-04-30T08:57:54+00:00","dateModified":"2026-04-30T08:57:55+00:00","mainEntityOfPage":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/"},"wordCount":477,"commentCount":0,"publisher":{"@id":"https:\/\/tekno.bali-island.com\/en\/#organization"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#primaryimage"},"thumbnailUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Stored-Procedure-Cursor.webp","articleSection":["Programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/","url":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/","name":"Explanation of Stored Procedures and Cursors in Databases","isPartOf":{"@id":"https:\/\/tekno.bali-island.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#primaryimage"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#primaryimage"},"thumbnailUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Stored-Procedure-Cursor.webp","datePublished":"2026-04-30T08:57:54+00:00","dateModified":"2026-04-30T08:57:55+00:00","description":"A complete explanation of stored procedures and cursors, starting from the definition, examples of syntax and the differences between the two.","breadcrumb":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#primaryimage","url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Stored-Procedure-Cursor.webp","contentUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Stored-Procedure-Cursor.webp","width":1920,"height":1080,"caption":"Stored Procedure & Cursor"},{"@type":"BreadcrumbList","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/explanation-of-stored-procedures-and-cursors-in-databases\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tekno.bali-island.com\/en\/"},{"@type":"ListItem","position":2,"name":"Explanation of Stored Procedures and Cursors in Databases"}]},{"@type":"WebSite","@id":"https:\/\/tekno.bali-island.com\/en\/#website","url":"https:\/\/tekno.bali-island.com\/en\/","name":"Bali Island Tekno","description":"","publisher":{"@id":"https:\/\/tekno.bali-island.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tekno.bali-island.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tekno.bali-island.com\/en\/#organization","name":"Bali Island Tekno","url":"https:\/\/tekno.bali-island.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Logo-Tekno-Bali-Island.webp","contentUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Logo-Tekno-Bali-Island.webp","width":512,"height":512,"caption":"Bali Island Tekno"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/Wilanpedia\/61575048527927\/"]},{"@type":"Person","@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/person\/945426dbaeb9dc9d603797b51b1b7e42","name":"Wilan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g","caption":"Wilan"},"sameAs":["https:\/\/tekno.bali-island.com"]}]}},"_links":{"self":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2793","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/comments?post=2793"}],"version-history":[{"count":1,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2793\/revisions"}],"predecessor-version":[{"id":2794,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2793\/revisions\/2794"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/media\/2784"}],"wp:attachment":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/media?parent=2793"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/categories?post=2793"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/tags?post=2793"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}