Re: [IronPython] INI File For IronPython

2007-10-01 Thread JoeSox
On 10/1/07, Davy Mitchell <[EMAIL PROTECTED]> wrote: > Hey Folks, > > Just wanted to pick a few brains... > > I was working on storage for GUI applications using INI files and > CPython libs. I am looking to remove the dependency on Python 2 and do > it all in DotNet. However as far as I can see th

Re: [IronPython] Send data from PDA to PC

2007-10-01 Thread Kevin Chu
IronPython now can't run on .NET Compact Framework, So you can do it on PC. On 9/16/07, jane janet <[EMAIL PROTECTED]> wrote: > > > Hello all, > > I have no idea to send data from PDA to personal computer. > > My Application is about RFID technology. I use Intermec Hanheld Reader 700 > series(PDA)

Re: [IronPython] [python] INI File For IronPython

2007-10-01 Thread Michael Foord
Davy Mitchell wrote: > Hey Folks, > > Just wanted to pick a few brains... > > I was working on storage for GUI applications using INI files and > CPython libs. I am looking to remove the dependency on Python 2 and do > it all in DotNet. However as far as I can see there is not direct > support for

Re: [IronPython] INI File For IronPython

2007-10-01 Thread Andrew Schaeffer
Use .NET app.config file. Key-value pair settings can be stored in the section. For example, You can access the key-value pair through (depending on which version of .NET you are using) the System.Configuration Namespace. // .NET 1.x System.Configuration.ConfigurationSettings.AppSetti

[IronPython] INI File For IronPython

2007-10-01 Thread Davy Mitchell
Hey Folks, Just wanted to pick a few brains... I was working on storage for GUI applications using INI files and CPython libs. I am looking to remove the dependency on Python 2 and do it all in DotNet. However as far as I can see there is not direct support for settings files - at least this is w

Re: [IronPython] [python] Re: Object DBs - Zope/Plone vs LINQ?

2007-10-01 Thread Keith J. Farmer
Being a pattern, LINQ supports operations over object collections just as well as it supports building expression trees to translate into SQL (or XQuery, or web service calls...). The benefit, of course, is that you use the same query syntax no matter the nature of the data source. It would p

Re: [IronPython] [python] Re: Object DBs - Zope/Plone vs LINQ?

2007-10-01 Thread Matt Clinton
Thanks for the rich responses - illuminating. To be a little more specific, I was thinking about the Object/Relational Designer in the LINQ article: not so much the SQL-variant syntax to access traditional DBs (sweet as that is, there's plenty of good ways already, ala DBI), but was wondering the

Re: [IronPython] Bug report

2007-10-01 Thread Martin Maly
I don't believe it is a bug. Notice that when you appended C:\\bin, you used double back-slash "\\", but when appending the C:\Windows\Bin you only used single backslash. Python standard then says: Unlike Standard C, all unrecognized escape sequences are left in the string unchanged, i.e., the

[IronPython] Future handling of op_Implicit

2007-10-01 Thread Giles Thomas
Hi, I guess we're going to have to use C# to work around the lack of op_Implicit support in the short term, but I'm interested in knowing about the IP team's plans for handling conversion operators going forward. Here's our situation; we have a highly-scriptable application, and our clients wa