Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Yes, you can use any ADO.NET provider you like... MySql, Advantage, DB2, VistaDB... they all have a native ADO.NET provider. However, you will need to create a specific DbDataSourceItem implementation for that provider. The DbDataSourceItem is used within SF to create the dynamic SQL Statments that process the INSERTS, UPDATES, and DELETES. So, you can create a new DbDataSourceItem using the SqlDataSourceItem as your template and replace the SqlCommand objects and so forth with your MySqlCommand objects. Other things will need to change in the dynamic SQL generation as well... like SQL Server uses TOP while MySql uses LIMIT and so forth.
|