Re: [web2py] Re: There were changes in MS SQLServer driver?

2014-05-27 Thread Nguyen Minh Tuan
Thanks Derek! On 24 May 2014 00:55, Derek sp1d...@gmail.com wrote: if you read the whole thing, he changed the way it works. db = DAL('mssql://dsn=192.168.0.52;user=usr1;password=pwd1;') hint: You have to use DBAPI 2.0 connection strings.

[web2py] Re: There were changes in MS SQLServer driver?

2014-05-23 Thread Derek
if you read the whole thing, he changed the way it works. db = DAL('mssql://dsn=192.168.0.52;user=usr1;password=pwd1;') hint: You have to use DBAPI 2.0 connection strings. http://legacy.python.org/dev/peps/pep-0249/#footnotes On Tuesday, May 20, 2014 10:17:09 PM UTC-7, Nguyen Minh Tuan wrote:

[web2py] Re: There were changes in MS SQLServer driver?

2014-05-20 Thread Nguyen Minh Tuan
Hi Jose, I'm now have the same error with you. and cannot connect to MSSQL server, I've read your self answer but can not understand. Can you help me? db = DAL('mssql://usr1:pwd1@192.168.0.52/database_1') environment : - CentOS 6.4 - Python 2.7.6 - Web2py 2.9.5 Thanks, Tuan. On Saturday,

[web2py] Re: There were changes in MS SQLServer driver?

2012-10-19 Thread Jose
I found this [1] that I had asked. I see that the same error occurred with version 1.99.7 [1] https://groups.google.com/forum/?fromgroups=#!topic/web2py/OlUTguqcqpw Jose --

[web2py] Re: There were changes in MS SQLServer driver?

2012-10-19 Thread Jose
I answer myself db = DAL http://127.0.0.1:8001/examples/global/vars/DAL( mssql://CAPC;UID=user;PWD=pwd) must explain the dsn: db = DAL http://127.0.0.1:8001/examples/global/vars/DAL( mssql://dsn=CAPC;UID=user;PWD=pwd) Jose --

[web2py] Re: There were changes in MS SQLServer driver?

2012-10-19 Thread Massimo Di Pierro
So, is the issue closed? On Friday, 19 October 2012 09:51:40 UTC-5, Jose wrote: I answer myself db = DAL http://127.0.0.1:8001/examples/global/vars/DAL( mssql://CAPC;UID=user;PWD=pwd) must explain the dsn: db = DAL http://127.0.0.1:8001/examples/global/vars/DAL(

[web2py] Re: There were changes in MS SQLServer driver?

2012-10-19 Thread Jose
El viernes, 19 de octubre de 2012 15:48:26 UTC-3, Massimo Di Pierro escribió: So, is the issue closed? Yes. Jose --