updated system reference, adjusted project files accordingly
This commit is contained in:
parent
0e96a7c863
commit
faad222ef4
@ -1 +1 @@
|
|||||||
Subproject commit 90ce83ba36c6081b1395b555575260cb13358693
|
Subproject commit dc79bc9aeb026f90c4a3a16838c360026871f5ec
|
||||||
@ -2,10 +2,8 @@
|
|||||||
namespace DBD;
|
namespace DBD;
|
||||||
|
|
||||||
class NEOPOLIMATRIX_GENERATE_ELEMENTLIST extends \SYSTEM\DB\QP {
|
class NEOPOLIMATRIX_GENERATE_ELEMENTLIST extends \SYSTEM\DB\QP {
|
||||||
protected static function query(){
|
public static function get_class(){return \get_class();}
|
||||||
return new \SYSTEM\DB\QQuery(get_class(),
|
public static function mysql(){return
|
||||||
//pg
|
'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;';
|
||||||
'',
|
}
|
||||||
//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;'
|
|
||||||
);}}
|
|
||||||
@ -2,12 +2,10 @@
|
|||||||
namespace DBD;
|
namespace DBD;
|
||||||
|
|
||||||
class NEOPOLIMATRIX_GENERATE_ELEMENTLIST_FULLTEXT_SEARCH extends \SYSTEM\DB\QP {
|
class NEOPOLIMATRIX_GENERATE_ELEMENTLIST_FULLTEXT_SEARCH extends \SYSTEM\DB\QP {
|
||||||
protected static function query(){
|
public static function get_class(){return \get_class();}
|
||||||
return new \SYSTEM\DB\QQuery(get_class(),
|
public static function mysql(){return
|
||||||
//pg
|
|
||||||
'',
|
|
||||||
//mys
|
|
||||||
'SELECT * FROM system_locale_string'.
|
'SELECT * FROM system_locale_string'.
|
||||||
' LEFT JOIN system_locale_string_tag_strings ON (system_locale_string.id = system_locale_string_tag_strings.id)'.
|
' 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 ?;';
|
||||||
);}}
|
}
|
||||||
|
}
|
||||||
@ -2,10 +2,8 @@
|
|||||||
namespace DBD;
|
namespace DBD;
|
||||||
|
|
||||||
class NEOPOLIMATRIX_GET_TEXT extends \SYSTEM\DB\QP {
|
class NEOPOLIMATRIX_GET_TEXT extends \SYSTEM\DB\QP {
|
||||||
protected static function query(){
|
public static function get_class(){return \get_class();}
|
||||||
return new \SYSTEM\DB\QQuery(get_class(),
|
public static function mysql(){return
|
||||||
//pg
|
'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 = ?;';
|
||||||
'',
|
}
|
||||||
//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 = ?;'
|
|
||||||
);}}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user