Joomla 2.5.X and Postgres - Impossible, just hard, or almost - Joomla! Forum - community, help and support
or otb - out of box.
i looking @ joomla 3.0.x (currently x==2) , postgresql, may pre-mature, hoping there parallel path can follow using joomla 2.5.x plus ...
what should fill in ...? have tried (maybe not exhaustively enough) not finding clear hints on how proceed joomla 2.5 base.
thanks assistance!
i looking @ joomla 3.0.x (currently x==2) , postgresql, may pre-mature, hoping there parallel path can follow using joomla 2.5.x plus ...
what should fill in ...? have tried (maybe not exhaustively enough) not finding clear hints on how proceed joomla 2.5 base.
thanks assistance!
welcome joomla forum!
note not 3rd party extensions work other databases mysql.
some use hard coded mysql strings
the correct sql query structure work kinds of sql databases be:
so if joomla work other databases might run problems 3rd party extensions...
note not 3rd party extensions work other databases mysql.
some use hard coded mysql strings
code: select all
$query = "select * #__content id >100; ";the correct sql query structure work kinds of sql databases be:
code: select all
$query->select('*');
$query->from('#__content');
$query->where('catid > 100');so if joomla work other databases might run problems 3rd party extensions...
Comments
Post a Comment