Article Preview
Buy Now
COLUMN
Stored Procedures
What Are Stored Procedures and How Do I Use Them?
Issue: 21.6 (November/December 2023)
Author: Vince Du Beau
Author Bio: Vince is an experienced Filemaker developer. He is exploring Xojo as an alternative to Filemaker.
Article Description: No description available.
Article Length (in bytes): 2,027
Starting Page Number: 93
Article Number: 21609
Related Link(s): None
Excerpt of article text...
SQL
stored procedures are like functions or methods in Xojo. They are SQL code that can be executed.Some SQL databases, such as Posrgres, support stored procedures being written in languages other than SQL. SQLite does not support that.
An example of creating a stored procedure (from W3school) is below:
CREATE PROCEDURE procedure_name
AS
...End of Excerpt. Please purchase the magazine to read the full article.