Re: Parsley question

2013-10-25 Thread dude
The introduction to chapter 11 of the Parsley documentation [1]: "11 - Building MVC Architectures Parsley is different from several other Flex or Flash MVC Frameworks in that it does not provide very much explicit support for the various pieces of an MVC architecture. This was a side effect of ou

Re: Parsley question

2013-10-25 Thread mark goldin
That forum is not too active. On Fri, Oct 25, 2013 at 7:59 PM, OmPrakash Muppirala wrote: > On Fri, Oct 25, 2013 at 5:53 PM, mark goldin > wrote: > > > How exactly Parsley is releasing mediators? > > > > > You should be able to bring this issue up in the Parsely forums. > > Thanks, > Om > > > >

Re: Parsley question

2013-10-25 Thread OmPrakash Muppirala
On Fri, Oct 25, 2013 at 5:53 PM, mark goldin wrote: > How exactly Parsley is releasing mediators? > > You should be able to bring this issue up in the Parsely forums. Thanks, Om > > On Fri, Oct 25, 2013 at 5:36 PM, Maurice Amsellem < > maurice.amsel...@systar.com> wrote: > > > > > i do > > > >

Re: Parsley question

2013-10-25 Thread mark goldin
How exactly Parsley is releasing mediators? On Fri, Oct 25, 2013 at 5:36 PM, Maurice Amsellem < maurice.amsel...@systar.com> wrote: > > i do > > Maurice > ___ > De : mark goldin [markzolo...@gmail.com] > Envoyé : vendredi 25 octobre 2013 22:48 > À : users > Ob

RE:Parsley question

2013-10-25 Thread Maurice Amsellem
i do Maurice ___ De : mark goldin [markzolo...@gmail.com] Envoyé : vendredi 25 octobre 2013 22:48 À : users Objet : Parsley question Anybody is working with Parsley framework? Thanks

Parsley question

2013-10-25 Thread mark goldin
Anybody is working with Parsley framework? Thanks

Re: Sqlite Like operator

2013-10-25 Thread Carlos Monteiro
Even if I use: SELECT upper('João') Like upper('JOÃO') as value It returns false. public function testLike():Boolean{ var stmt:SQLStatement = new SQLStatement(); stmt.sqlConnection = sqlConnection; stmt.text = "SELECT upper('João') Like upper('JOÃO') as value"; stmt.execute(); var result:Array

Re: Developing on VMWARE guest system

2013-10-25 Thread mark goldin
Not sure I know what you are talking about but it is kind of working. Kinda. If I try exporting a build back to the host it will take forever. On Fri, Oct 25, 2013 at 12:08 PM, Neil Huyton wrote: > Yes, you'll need to set up Bridged Networking IIRC. > > > On 25 October 2013 18:04, JP Bader wro

Re: Sqlite Like operator

2013-10-25 Thread Neil Huyton
I don't know your specific use case, but I just use lower() in my queries. On 25 October 2013 18:19, Carlos Monteiro wrote: > Hi, > > How do you get around the sqlite case sensitive bug? > > http://www.sqlite.org/lang_expr.html > (A bug: SQLite only understands upper/lower case for ASCII chara

Sqlite Like operator

2013-10-25 Thread Carlos Monteiro
Hi, How do you get around the sqlite case sensitive bug? http://www.sqlite.org/lang_expr.html (A bug: SQLite only understands upper/lower case for ASCII characters by default. The LIKE operator is case sensitive by default for unicode characters that are beyond the ASCII range. For example, the

Re: Developing on VMWARE guest system

2013-10-25 Thread Neil Huyton
Yes, you'll need to set up Bridged Networking IIRC. On 25 October 2013 18:04, JP Bader wrote: > Could you be a little more specific? > > I've done .net/sql server dev work on vm's and front end dev on the local > host, allowing for debug on host. Google will help you figure out the > details. >

Re: Developing on VMWARE guest system

2013-10-25 Thread JP Bader
Could you be a little more specific? I've done .net/sql server dev work on vm's and front end dev on the local host, allowing for debug on host. Google will help you figure out the details. JP On Oct 25, 2013 12:01 PM, "mark goldin" wrote: > Has anyone tried doing development on the guest syste

Developing on VMWARE guest system

2013-10-25 Thread mark goldin
Has anyone tried doing development on the guest system but having projects and running/debugging on the host system? Thanks