If I'm running AppWizard do I have the ability to connectInfo string manually ?
-----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of John Sent: Tuesday, November 03, 2009 7:48 AM To: Dabo developers' list Subject: Re: [dabo-dev] Sql Server trusted connection On Tuesday 03 November 2009 04:50:43 am Steffl, Joseph wrote: > I prefer using Dabo for a simple CRUD app using SqlServer DB, however > it appears that Dabo doesn't implement trusted connections through pymssql. > This article suggests its possible: > http://pymssql.sourceforge.net/architecture.php > > Is there presently a workaround for this within Dabo? You can always build the connectInfo string manually (see below). Also I submitted for review a few code changes to the framework to allow the CxnEditor to create "extra settings " in the connection file. See ticket 1294. from connectInfo import ConnectInfo from dConnection import dConnection ci = ConnectInfo('MySQL') ci.host = 'paulmcnett.com' ci.dbName = "house" ci.user = 'dabo' ci.password = 'dabo' conn = dConnection(ci).getConnection() Johnf [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/9a745764a58ad94d996a055d92d7012bd4827...@mspm1bmsgm20.ent.core.medtronic.com
