%@ Page language="C#" %> <%@ Register TagPrefix="mono" TagName="MonoSamplesHeader" src="~/controls/MonoSamplesHeader.ascx" %> <%@ import namespace="System.Configuration" %> <%@ import namespace="System.Data" %> <%@ import namespace="System.Reflection" %> <%@ import namespace="System.IO" %>
You should set up a database of your choice and then modify the variables DBProviderAssembly, DBConnectionType and DBConnectionString in xsp.exe.config (or mod-mono-server.exe.config if running the tests under Apache/mod_mono) file to fit your needs.
The database should have a table called customers created with the following command (or similar):
CREATE TABLE "test" ( "person" character varying(256) NOT NULL, "email" character varying(256) NOT NULL );