In this post, we’re going to take a look at the R in CRUD: Retrieve.
We will be using the DBD::Oracle driver to retrieve some data from the database tables, using the connection object created in the Initial Setup section of the first post in this series.
Simple query
We will perform a simple query that pulls all of the records in no particular order. Here are the steps we’ll follow in the code snippet below.
- Create the connection object and set it to raise errors. We will use this object to perform our database operations.
- Prepare the SQL SELECT statement, specifying the columns desired from the table.
- Execute the statement.
- Fetch the results and dump them to $fh.
- Disconnect.
1 2 3 4 5 6 7 8 9 |
# Query all rows my $con = DBI->connect( 'dbi:Oracle:', $connectString, ''); $con->{RaiseError} = 1; # set the connection to raise errors my $sth = $con->prepare("select id, name, age, notes from lcs_people"); $sth->execute; DBI::dump_results($sth); $con->disconnect; |

1 2 3 |
'1', 'Bob', '35', 'I like dogs' '2', 'Kim', '27', 'I like birds' 2 rows |
Extra Fun 1
Modify the statement to order by age. When you’re done the results should be:
1 2 3 |
'2', 'Kim', '27', 'I like birds' '1', 'Bob', '35', 'I like dogs' 2 rows |
Select specific rows
Now suppose I only want to see the data for Kim. I want, therefore, to restrict the rows returned by the SELECT. This is done with a WHERE clause. There are several ways to do this.
We could just put the where clause in the statement and it would work.
1 |
my $sth = $con->prepare("select id, name, age, notes from lcs_people where name = 'Kim'"); |
However, we want to choose the name at run time and store it in a variable called person_name. You could accept the value in as an argument passed into a function, but we’ll just set a variable to keep it simple.
1 |
my $person_name = 'Kim'; |
It is possible to simply concatenate the value into the statement.
1 |
my $sth = $con->prepare("select id, name, age, notes from lcs_people where name= '${person_name}'"); |
This is very dangerous and opens our code to a SQL Injection attack. You can follow that link for more information, but we won’t be going into detail in this series. Just know that you should, generally, never allow end user input to be fed directly into a dynamic SQL statement.
A much safer way to pass external values into the SQL statement is by using bind variables with prepared statements.
You have a couple different options:
Placeholders:
1 2 3 4 5 6 7 |
my $sth = $con->prepare("select id, name, age, notes from lcs_people where name = ? and age = ?"); $sth->bind_param(1,'Bob'); $sth->bind_param(2, 35); my $sth = $con->prepare("select id, name, age, notes from lcs_people where name = ? and age = ?"); $sth->bind_param(2, 35); $sth->bind_param(1,'Bob'); |
Named:
1 2 3 4 5 6 7 |
my $sth = $con->prepare("select id, name, age, notes from lcs_people where name = :name and age = :age"); $sth->bind_param( ":name",'Bob'); $sth->bind_param( ":age", 35); my $sth = $con->prepare("select id, name, age, notes from lcs_people where name = :name and age = :age"); $sth->bind_param( ":age", 35); $sth->bind_param( ":name",'Bob'); |
Notice, in both examples, that we do not wrap the bind variable for the name with quotes. This is handled automatically when the statement is prepared for execution.
Example:
- Create the connection object and set it to raise errors.
- Assign ‘Kim’ to person_name.
- Prepare the SQL statement using a bind variable.
- Bind the value of $person_name to :name.
- Execute the statement.
- Fetch the results and dump them to $fh.
- Disconnect.
1 2 3 4 5 6 7 8 9 10 |
# Query for Kim my $con = DBI->connect( 'dbi:Oracle:', $connectString, ''); $con->{RaiseError} = 1; # set the connection to raise errors my $person_name = 'Kim'; my $sth = $con->prepare("select id, name, age, notes from lcs_people where name=:name "); $sth->bind_param( ":name",$person_name); $sth->execute; DBI::dump_results($sth); |

1 2 |
'2', 'Kim', '27', 'I like birds' 1 rows |
Extra Fun 2
Modify the statement and variable to get the people older than 30. When you’re done the results should be:
1 2 |
'1', 'Bob', '35', 'I like dogs' 1 rows |
In this section, we took a look at some basic query functionality. When you experiment with more complex queries, if you run into problems leave a comment here or on twitter and we’ll find an answer together.
Some things you could try
- Join the lcs_people and lcs_pets table to get the people and their pets
- Only retrieve the person’s name and age
- Change the order to display in descending order.
Hint – If you have trouble getting a query to run in your code, try running it in SQL Plus or another database console tool. This will help determine if the problem is with the query or the code.
Series sections
Initial Setup
Create records
Retrieve records
Update records
Delete records