[Mono-docs-list] A helpful not for the Parallel Mono Environments page

Jay R. Wren jrwren at gmail.com
Tue Oct 18 20:53:30 EDT 2005


It may be useful to mention that automake1.4 doesn't work with the
instructions at http://www.mono-project.com/Parallel_Mono_Environments

I'm not sure what versions of automake work, but 1.7 worked for me.

Also, on the Provider-factory page at
http://www.go-mono.com/provider-factory.html the app.config file is
wrong.  Each of the provider elements are missing command attributes.

Just trying to help with docs.  My section of my app.config which
works great with ProviderFactory is :
	<mono.data>
		<providers>
			<provider name="System.Data.SqlClient"
connection="System.Data.SqlClient.SqlConnection"
			adapter="System.Data.SqlClient.SqlDataAdapter"
command="System.Data.SqlClient.SqlCommand"
			description="Microsoft Sql Server Provider"
			assembly="System.Data, Version=1.0.3300.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089"/>
			<provider name="System.Data.OleDb"
connection="System.Data.OleDb.OleDbConnection"
			adapter="System.Data.OleDb.OleDbDataAdapter"
command="System.Data.OleDb.OleDbCommand"
			assembly="System.Data, Version=1.0.3300.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089"
			description="OLEDB" />
			<provider name="System.Data.Odbc"
connection="System.Data.Odbc.OdbcConnection"
			adapter="System.Data.OleDb.OdbcDataAdapter"
command="System.Data.Odbc.OdbcCommand"
			assembly="System.Data, Version=1.0.3300.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089"
			description="ODBC"/>
			<!--
			<provider name="Mono.Data.TdsClient"
connection="Mono.Data.TdsClient.TdsConnection"
			adapter="Mono.Data.TdsClient.TdsDataAdapter"
			assembly="Mono.Data.TdsClient" />
			<provider name="Mono.Data.MySql"
connection="Mono.Data.MySql.MySqlConnection"
			adapter="Mono.Data.MySql.MySqlDataAdapter"
			assembly="Mono.Data.MySql" />
			<provider name="Mono.Data.PostgreSqlClient"
			connection="Mono.Data.PostgreSqlClient.PgSqlConnection"
			adapter="Mono.Data.PostgreSqlClient.PgSqlDataAdapter"
			assembly="Mono.Data.PostgreSqlClient" />
			<provider name="Mono.Data.SqliteClient"
			connection="Mono.Data.SqliteClient.SqliteConnection"
			adapter="Mono.Data.SqliteClient.SqliteDataAdapter"
			assembly="Mono.Data.SqliteClient" />
			<provider name="Mono.Data.SybaseClient"
			connection="Mono.Data.SybaseClient.SybaseConnection"
			adapter="Mono.Data.SybaseClient.SybaseDataAdapter"
			assembly="Mono.Data.SybaseClient" />
			-->
		</providers>
	</mono.data>


As you can see, I have the sections which I am not using commented
out, but the command attribute is needed on those entries also.


If I can do these fixes to docs myself, please let me know.  If I'm
not following good contribution etiquette, please let me know.  I'm
just trying to help.

Thanks.
--
Jay


More information about the Mono-docs-list mailing list