sjaakp / yii2-alphapager

Alphabetic paging with Yii 2.0
https://sjaakpriester.nl/software/alphapager
MIT License
18 stars 6 forks source link

Oracle regexp_like #3

Closed bchesnut closed 9 years ago

bchesnut commented 9 years ago

Very nice, straightforward extension.

The following works for me using Oracle 11g:

'regex' => function($attribute, $pattern) {
    return "regexp_like($attribute, '^$pattern')";
}

Also, I suggest adding a note about the $alphaDefault attribute under ActiveDataProvider.

sjaakp commented 9 years ago

Thanks.