User Profile

Collapse

Profile Sidebar

Collapse
Slapo
Slapo
Last Activity: Mar 20 '11, 08:47 AM
Joined: Jul 18 '08
Location: Slovakia
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Slapo
    replied to Byte PHP framework
    in PHP
    I know that the pdo extension itself is just an abstraction layer, but some cheap hosts don't have the pdo drivers, such as those you have mentioned, turned on. Then again, one could question whether it's sensible to use such hosts :P

    Anyway, I was just thinking it would help making it more flexible.








    That and I've found that my cheap (a. k. a.) free host has them...
    See more | Go to post

    Leave a comment:


  • Slapo
    replied to Byte PHP framework
    in PHP
    I think it would make sense to make it optional and interchangeable with ordinary drivers, so that the one using it can simply choose changing a line in a configuration file (if you plan on using one, which is probably a good idea if you'd include a line in the code that would disable viewing it directly).

    Why would one want to use something else than PDO drivers? For drivers that don't have a PDO variant or that perform better than...
    See more | Go to post

    Leave a comment:


  • Slapo
    replied to Byte PHP framework
    in PHP
    The Help, Open discussion forum or a different one?
    I can't see any other than welcome posts in the project forums on SF.

    Can (and do) project developers have their own private forums or thread on SF?...
    See more | Go to post

    Leave a comment:


  • Slapo
    replied to Byte PHP framework
    in PHP
    I'd suggest 'glue', as it gives flexibility both newbies and advanced users might like.
    'Full stack' might feel more consistent, but if it would make integration of 3rd party classes difficult, it would become time consuming and there would be little point in using it further for many.

    EDIT: ditch coffee, try mint tea ;)...
    See more | Go to post

    Leave a comment:


  • Slapo
    replied to Byte PHP framework
    in PHP
    Thanks for the response, dlite :)

    How do you plan on routing URI parameters? I think that could influence a lot.
    I see two sensible approaches at the moment:
    1. use the usual form of parameters, e. g. index.php?c=mai n&f=index
    2. pseudo seo style, e. g. index.php/main/index or index/main/index (where there's only index, .htaccess or something similar would have to be used to force the webserver to feed it...
    See more | Go to post

    Leave a comment:


  • Slapo
    replied to Byte PHP framework
    in PHP
    I've been following this thread for a while.
    I might give this one a go too once you manage to get something like a pre-release together (i.e. when it starts looking like what you want to achieve) - 60% complete might still be a bit too early.

    There are a few things that seem to be too optimistic about this one, but I presume only time will show whether I was right thinking what I was thinking ;)

    What size of...
    See more | Go to post

    Leave a comment:


  • I'll reply to myself here:
    changing:
    Code:
    WHILE category IS NOT NULL LOOP
    to:
    Code:
    WHILE category.id IS NOT NULL LOOP
    solved the problem.
    See more | Go to post

    Leave a comment:


  • Pseudo-type record seen as column by an older PostgreSQL version

    Hello everyone,

    I could use some help with this function I've created (see below) that runs flawlessly on PostgreSQL 8.3.6 on my development machine but ends with an error on the production server that has PostgreSQL 7.4.8 installed (see below).

    My function:
    Code:
    CREATE OR REPLACE FUNCTION generate_menu(varchar(255), char(2), varchar(255), int, varchar(255), int, int, varchar(255), varchar(255)) RETURNS text AS '
    ...
    See more | Go to post
No activity results to display
Show More
Working...