businessdad
MVPHackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
businessdad MVP
Reactions
-
Re: Remind Users to come back?
The Cron plugin needs some refinement, but it works and it can easily be used by other plugins and applications. In fact, I even suggested the Vanilla Team to use it in their official releases. A bit… (View Post)1 -
Re: Remind Users to come back?
Which exists :D (View Post)2 -
Re: SQL fetching advice needed.
I don't want to sound like teaching you how to learn, but, if your objective is to get proficient with SQL, I would recommend to avoid reading about performance tuning and optimisation of one or the … (View Post)1 -
Re: SQL fetching advice needed.
If one doesn't have experience with SQL, those are not silly questions. 1. Multiple queries, or multiple OR clauses? Running multiple queries or a single query with multiple OR clauses won't make muc… (View Post)3 -
Re: Is it possible to know if a Gdn_Model::Save() was successful, without using an autoincrement key?
That could be an idea. Time for an experiment! It's set in Gdn_SqlDriver::Query(): public function Query($Sql, $Type = 'select') { switch ($Type) { case 'insert': $ReturnType = 'ID'; break; case 'upd… (View Post)2