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
_______________________________________________
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/[email protected]