1dbsessmgr(1) User Commands dbsessmgr(1)
2
3
4
6 dbsessmgr - session state database manager
7
9 mono dbsessmgr.exe [options]
10
12 dbsessmgr allows you to manage the ASP.NET session state database.
13
15 --clean
16 Remove all expired sessions.
17
18 --remove
19 Delete all sessions.
20
21 --show Display session data.
22
24 You can choose the assembly and type used to connect to your database
25 backend and also set the connection string and the SQL parameter prefix
26 through the configuration file, named dbsessmgr.exe.config. The con‐
27 figuration shipped by default is:
28
29 <appSettings>
30 <add key="DBProviderAssembly"
31 value="Npgsql"/>
32 <add key="DBConnectionType"
33 value="Npgsql.NpgsqlConnection"/>
34 <add key="DBConnectionString"
35 value="SERVER=127.0.0.1;USER ID=monostate;PASSWORD=monostate;dbname=monostate"/>
36 <add key="DBParamPrefix"
37 value=":" />
38 </appSettings>
39
41 dbsessmgr was written by Jackson Harper (jackson@ximian.com).
42
44 mono(1),xsp(1),asp-state(1),mod_mono(8)
45
47 The Mono project (http://www.go-mono.com) is a collaborative effort led
48 by Novell (http://www.novell.com) to implement an open source version
49 of the .NET Framework.
50
51
52
53
54dbsessmgr 4.7.1 28 May 2004 dbsessmgr(1)