updated system reference, adjusted project files accordingly

This commit is contained in:
Ulf Gebhardt 2015-08-04 05:03:15 +02:00
parent 0e96a7c863
commit faad222ef4
4 changed files with 16 additions and 22 deletions

@ -1 +1 @@
Subproject commit 90ce83ba36c6081b1395b555575260cb13358693
Subproject commit dc79bc9aeb026f90c4a3a16838c360026871f5ec

View File

@ -2,10 +2,8 @@
namespace DBD;
class NEOPOLIMATRIX_GENERATE_ELEMENTLIST extends \SYSTEM\DB\QP {
protected static function query(){
return new \SYSTEM\DB\QQuery(get_class(),
//pg
'',
//mys
'SELECT * FROM system_locale_string LEFT JOIN system_locale_string_tag_strings ON (system_locale_string.id = system_locale_string_tag_strings.id) WHERE tag_string like ? ORDER by timestamp DESC;'
);}}
public static function get_class(){return \get_class();}
public static function mysql(){return
'SELECT * FROM system_locale_string LEFT JOIN system_locale_string_tag_strings ON (system_locale_string.id = system_locale_string_tag_strings.id) WHERE tag_string like ? ORDER by timestamp DESC;';
}
}

View File

@ -2,12 +2,10 @@
namespace DBD;
class NEOPOLIMATRIX_GENERATE_ELEMENTLIST_FULLTEXT_SEARCH extends \SYSTEM\DB\QP {
protected static function query(){
return new \SYSTEM\DB\QQuery(get_class(),
//pg
'',
//mys
public static function get_class(){return \get_class();}
public static function mysql(){return
'SELECT * FROM system_locale_string'.
' LEFT JOIN system_locale_string_tag_strings ON (system_locale_string.id = system_locale_string_tag_strings.id)'.
' WHERE deDE like ? OR system_locale_string.id like ?;'
);}}
' WHERE deDE like ? OR system_locale_string.id like ?;';
}
}

View File

@ -2,10 +2,8 @@
namespace DBD;
class NEOPOLIMATRIX_GET_TEXT extends \SYSTEM\DB\QP {
protected static function query(){
return new \SYSTEM\DB\QQuery(get_class(),
//pg
'',
//mys
'SELECT * FROM system_locale_string LEFT JOIN system_locale_string_tag_strings ON (system_locale_string.id = system_locale_string_tag_strings.id) WHERE tag_id = ?;'
);}}
public static function get_class(){return \get_class();}
public static function mysql(){return
'SELECT * FROM system_locale_string LEFT JOIN system_locale_string_tag_strings ON (system_locale_string.id = system_locale_string_tag_strings.id) WHERE tag_id = ?;';
}
}