Relational databases, along with the file system and structured markup, are one of the primary means of storing and exchanging data between applications. As such, they are an important part of any programmer's toolkit.
Database access in Scheme is generally achieved at the lowest levels through the use of an ExtensionLibrary?. These libraries are usually written to either the Scheme implementation's native FFI interface, or using a tool such as SWIG, which automates the creation of FFI wrappers for a number of Schemes, including PLT. With such an approach, you'll need access to a compiler for your platform (almost certainly a C compiler) and some knowlege of compiling C code.
For PLT, another alternative would be to use David van Horn's c-syntax module to expose the low-level C interface for your database. PLT also provides the SrPersist? library for working with ODBC data sources. This would be a nice option for a database that has an ODBC provider but where no FFI library exists for PLT, or if you don't have access to a C compiler or the knowlege of how to use one.
At a higher level, Schematics provides SchemeQL, which provides a higher level interface on top of SrPersist?.
(edit comments)