Login Skip Navigation LinksWilsonORMapper > Forums Search
Demo Version Demo Version
Download and try for yourself a fully working demo version, including sample apps and documentation.  The only limitation is that the demo version only works inside the debugger.

PayPal Subscribe
Get It All for $50 USD:
WebPortal, ORMapper,
Source Code, All Updates
PayPal

User Login User Login
Log In
 
 
Reset Password

Wilson ORMapper Forums Wilson ORMapper Forums : Other Databases : SSH

Date Post
5/16/2006 11:11:39 PM

I'm wondering if I need to do anything special or if it's possible to use WORM with CoreLab's MySQL .Net Provider connecting Via SSH..

I found  a sample on Corelab's site of how to use SSH to connect to a db, but I'm not sure where/how to utilize this with WORM - I generate my code using Welter's templates and CodeSmith.

mySqlConnection.UserId = "dbusername";
mySqlConnection.Password = "dbpassword";
mySqlConnection.Database = "dbname";
mySqlConnection.Port = 3306;
mySqlConnection.Host = "hostname.com";
mySqlConnection.Protocol = MySqlProtocol.Ssh;
mySqlConnection.SshOptions.Host = "hostname.com";
mySqlConnection.SshOptions.Port = 22;
mySqlConnection.SshOptions.User = "sshusername";
mySqlConnection.SshOptions.Password = "sshpassword";

Anybody use WORM with a MySQL SSH connection?

Chad Biggerstaff