[python-win32] overview of ntfs permissions ?

2009-05-26 Thread Stef Mientki
hello, is there a way to get an overview of ntfs permissions, of a specified part of a directory tree ? thanks, Stef Mientki ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] win32job.SetInformtionJobObject usage -- what am I doing wrong?

2009-05-26 Thread Bob Erb
Tim Roberts writes: > Bob Erb wrote: >> I want to create a Win32 job, then limit its memory use. I thought >> the code below would work, but it doesn't. What am I doing wrong? >> > > > You also need this before the Set call: > extended_limits['BasicLimitInformation']['Limit_Flags'] += > win

Re: [python-win32] Sourceforge Download Link

2009-05-26 Thread Mike Driscoll
Randy Syring wrote: Has anyone noticed that the big green download box on this page: http://sourceforge.net/projects/pywin32/ says the latest build is 213, but when you click on the link in that box, it takes you to 212? I think it did the same thing when 211 was introduced...instead of 211

Re: [python-win32] adodbapi and stored procedure output parameters on

2009-05-26 Thread Randy Syring
Vernon, I have now also tested this with SQL Server Express 2005 on vista and am still getting an error. I am adding my previous email to you here for the benefit of the list: On both XP and Vista, I am using 2.2.5. I don't see a 2.2.6 on sourceforge. As for the SQL Server versi

Re: [python-win32] adodbapi and stored procedure output parameters on

2009-05-26 Thread Vernon Cole
Randy: Just to make sure... what version of adodbapi are we talking about? >>> import adodbapi >>> adodbapi.version 'adodbapi v2.2.6 ' >>> -- Vernon On Tue, May 26, 2009 at 1:16 PM, Randy Syring wrote: > Vernon, > > I didn't mention this in my last email, but I also tried the: > > SET  @param =

Re: [python-win32] adodbapi and stored procedure output parameters on

2009-05-26 Thread Vernon Cole
Randy: I am no longer employed by the company who supplied the SQL server I used to test on, and am stuck with SQLexpress on my laptop. No Query Analyzer. (Bah!) Clearly, either my test was invalid, or there is a difference in SQL versions. What version are you using? -- Vernon On Tue, May 26, 20

Re: [python-win32] adodbapi and stored procedure output parameters on

2009-05-26 Thread Randy Syring
Vernon Cole wrote: In this case, the proceedure outputs TWO record sets, since there are two SELECT statements. If the second select statement, "select @param = 10" were changed to "SET @param = 10" then, I believe, the result would have been as expected. Vernon, thanks for your comments.

[python-win32] Sourceforge Download Link

2009-05-26 Thread Randy Syring
Has anyone noticed that the big green download box on this page: http://sourceforge.net/projects/pywin32/ says the latest build is 213, but when you click on the link in that box, it takes you to 212? -- -- Randy Syring RCS Computers & Web Solutions 502-644

Re: [python-win32] win32job.SetInformtionJobObject usage -- what am I doing wrong?

2009-05-26 Thread Tim Roberts
Bob Erb wrote: > I want to create a Win32 job, then limit its memory use. I thought > the code below would work, but it doesn't. What am I doing wrong? > > # > > import win32job > import win32security > > security_attrs = win32security.SECURITY_ATTRIBUTES() > > job = win32job.CreateJobObject(secu

[python-win32] win32job.SetInformtionJobObject usage -- what am I doing wrong?

2009-05-26 Thread Bob Erb
Hi. I want to create a Win32 job, then limit its memory use. I thought the code below would work, but it doesn't. What am I doing wrong? # import win32job import win32security security_attrs = win32security.SECURITY_ATTRIBUTES() job = win32job.CreateJobObject(security_attrs, 'test job') ext

Re: [python-win32] writing hyphenated values in csv

2009-05-26 Thread Dahlstrom, Roger
Additionally, your csv file is *not* being auto-corrected. If this file is supposed to be able to be imported into things *other* than Excel, leave it alone and do not put an equals in front of it. If you were to open your file in Notepad or some other text editor, you'd see the value as you e

Re: [python-win32] adodbapi and stored procedure output parameters on

2009-05-26 Thread Vernon Cole
According to PEP 249... .callproc(procname[,parameters]) Call a stored database procedure with the given name. The sequence of parameters must contain one entry for each argument that the procedure expects. The result of the call is returned a