user-pic

David Oswald

  • About: daoswald [a@t] gmail [d0_t] com
Subscribe to feed Recent Actions from David Oswald

  • john napiorkowski commented on A call to action for CPAN authors

    I'm not sure what the confusion here is...

    AFAIK this change has been spoken about for quite a while, at least a year that I can recall. Beta and RC releases have been out with this change, and if you are a CPAN author you've likely already been getting reports about the broken test cases for months. So I can't really think its fair to jump in at such a late moment and complain about the 'decision making process'.

    A slightly backwards incompatible change was made that made already broken code slightly more obviously broken in order to fix a monumental security issue. Thi…

  • welcome.mahesh commented on A Simple Mojolicious/DBI Example

    Wonderful. I am looking for Mojolicious Application Example to understand it. This is so helpful :)

    Thanks to aristotle for his very very valuable points for a new bie.

  • Henryk Paluch commented on A Simple Mojolicious/DBI Example

    Hello!

    For Unicode support there are few fixes needed:

    Add:

    use Encode;
    plugin Charset => {charset => 'utf-8'};
    

    modify / method to:

    any '/' => sub {
      my $self = shift;
      my $rows = $self->select;
      # convert utf-8 octets -> unicode
      for my $Item ( @{ $rows } ){
          map { $_ = decode('utf-8',$_) } @{ $Item };
      }
      $self->stash( rows => $rows );
      $self->render('index');
    };
    

    Best regards

     —Henryk Paluch

  • gflynn commented on A Simple Mojolicious/DBI Example

    Before I ask a question, let me say thank you for all the examples and explanations (I see your name frequently).

    I have gotten a handle on the fundamentals of Mojolicious. The one thing I can not find any information on is, creating a schema from and existing MS SQL database then connecting.

    Everything I read is SQLite or any other version beside MS SQL. I’m starting to wonder if it’s similar to Corona SDK in that you create a sql database to store information, then push that data to your server DB.

    If anyone else has any experience or information PLEASE…

  • Joel Berger commented on A Simple Mojolicious/DBI Example

    Before I answer, let me just say that commenting on an ancient post is unlikely to get great responses mostly because the visibility is so low. I only happened to notice because it was on the posting comment dashboard which I rarely look at. In the future, come talk with us http://mojolicious.org/perldoc#SUPPORT

    To your actual question. I think very few of us use MS SQL, mostly just because most of us are on *nix. I think were I you, I’d look for tools like sqitch etc which are intentionally mu…

Subscribe to feed Responses to Comments from David Oswald

About blogs.perl.org

blogs.perl.org is a common blogging platform for the Perl community. Written in Perl with a graphic design donated by Six Apart, Ltd.