Recent content by vapid

  1. V

    Not planned PostgreSQL database support

    Apples and oranges, Dave. Google was unable to negotiate a suitable licensing agreement to use Java technologies on the Android platform. Their response to this was to create Dalvik. The effect here is that you compile your Java code, Dalvik re-compiles the compiled code so that it isn't "Java"...
  2. V

    Not planned PostgreSQL database support

    While Zend does support many database backends, all the queries for XenForo are 'hand-written' and it is the same with any addon that will use the database. Take a look at the Thread model when you get your license. Any word on why this wasn't written using a nice ORM? Or does PHP not really...
  3. V

    Not planned PostgreSQL database support

    Yea, after doing some development on mods and seeing how things are structured I don't have a lot of hope for being able to port this properly. Even if I got the forum software itself running on PostgreSQL, some mods would probably have to be changed as well. Too much of a hassle for the person...
  4. V

    Mod installation: Altering Database Tables

    This is kind of dirty, and there is probably a better way to do this, but this should work. // to add a column to a table $db->query('ALTER TABLE the_table ADD COLUMN randomCol INT(10) NOT NULL DEFAULT 0;'); // to remove a column from a table $db->query('ALTER TABLE the_table DROP COLUMN...
  5. V

    Miserable Users

    This already exists in the default install :)
  6. V

    What are you listening to?

    Rush - 2112
  7. V

    Not planned PostgreSQL database support

    I'm with Shamil on this one--I already run PostgreSQL on my VPS for several Django apps and would really rather not have to run MySQL as well. If the developers don't intend to implement pgsql support, what would their stance be on a community-written 'plugin' to make it work?
Top Bottom