devxlogo

Embedding Variable Values

Embedding Variable Values

Question:
I am writing a program that searches a database and i am trying to use avariable for the WHERE clause. Can you Help me? here is an example:

Data1.RecordSource = “Select * from Movies where Movie = FindMovies”
FindMovies is my variable.

Answer:
Try this:

Data1.RecordSource = “Select * from Movies where Movie = ‘” & FindMovies & “‘”
The variable value has to be in quotes when it gets to the database engine.Bear in mind that this will only work if there are no apostrophe’s nor pipe symbols (just with the Jet engine), in your FindMovies variable. You should parse through FindMovies and replace all occurences of an apostrophe with two apostrophes, e.g. Mr. Holland’s Opus would be passed to the SQL Server as Mr. Holland”s Opus.Any occurance of the pipe symbol should be replaced with a chr$(124). This would mean running your FindMovie variable through a routine that replaces one substring with another once each for the apostrophe and the pipe symbol.Lastly, it sometimes helps to put your entire query into one string before passing it. Something like:
Dim sqlQuery As StringsqlQuery =  “Select * from Movies where Movie = ‘” & FindMovies & “‘”Data1.RecordSource = squQuery
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