devxlogo

Static vs. Dynamic SQL

Static vs. Dynamic SQL

Question:
What is the difference between static and dynamic SQL? For that matter, what are they?

Answer:
Static SQL statements are embedded in the source code of a program. They declare host variables (signaled by a ‘ : ‘ prefix) to send and receive data from a query. The cursor they create is brittle, in that it won’t accept any subsequent result sets, only the first.

Dynamic SQL uses parameter markers instead of host variables, which are the placeholders for the outgoing query. Their use is for querying the database for database objects, the names of which are not known at compile time. Dynamic SQL makes this information available to your application.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist