Posts by Tiago Davi • 36 points
2 posts
-
1
votes1
answer275
viewsA: Compare all records in table "A" with each record in table "B"
I get it. JOIN won’t be much different from the comparison query you made before not, it will probably lock the same way, but one solution is you limit the amount of records in the comparison to a…
-
1
votes1
answer98
viewsA: joomsocial component causes error "class 'Caccess' does not have a method 'authorise'"
Simple, your class does not have a method called "authorise". You need to define this method in the class or it can be private, in the latter can only be called from within the class itself. Try to…