As others have pointed out hosting the Silverlight control itself in an ASP pages is a doddle. However I suspect your main issue is where you say "the silverlight application is also database driven, so it will be connected to the database". Now that is much trickier if you can only use classic ASP on the server.
Initially I would say why not create an ASP.NET application to host some WCF or ADO.NET Data Service to supply the SL app with its data.
Failing that if your back end must strictly be ASP classic only then you aren't going to find examples of ASP to Silverlight. However you should be able to find examples of creating SOAP based web services and WSDL stuff in classic ASP. You should also be able to find examples of creating Silverlight apps that consume SOAP/WSDL backed services. You can then stich these two skills together.
I must stress though you would be better off using and ASP.NET backed for the data access. This does not require that you upgrade all your existing ASP code right now to ASP.NET, you just create a sub-application in ASP.NET to bind to the SL app.