If you are working on jquery and However you want to check variable is undefined or not then you can easily check by typeof operator which is simple fast and crossplatformpre classlanguagejavascriptiftypeof i undefined alertundefinedpreIf you are working on jqu
Over the weekend I read in the FT (paywall): Is Brussels safe? Ring a local resident to find out. I’m sure it will be fine, and you will want to be there for FOSDEM, happening 30-31 January 2016.
There is the excellent one day track, that is the MySQL & Friends Devroom (site). Talks hail from Oracle, MariaDB Corporation, Percona and more. We don’t have a booth this year, but we do have amazingly good content on Saturday. I’m happy to have been part of the committee that chose the talks, but you know that this is a labour of love put on by Frédéric Descamps, Liz van Dijk, Dimitri Vanoverbeke, and Kenny Gryp. I’m …
[Read more]One of my favourite events run by a grassroots organisation is SCALE, and they are now doing their 14th edition, SCALE14x. If you’re into opensource software as well as all things open, this is the place to be from January 21-24 2016. It is at a new location in Pasadena (so not quite next to LAX as it was previously), but this is due to growth — so kudos to the team.
From MariaDB Corporation you get to see Max Mether (Scaling MySQL & MariaDB – I’m extremely interested in seeing what he has to say and will likely blog the session) and me (The MySQL Server Ecosystem in …
[Read more]If you are working on laravel framwork and you use query builder of laravel 5 but you want to get last executed mysql query from laravel If you are working on laravel 5 then you have to first enable query log that way it can be store query log At last getQueryLog through you can get last execut
If you are working on laravel framwork and you use query builder of laravel 5 but you want to get last executed mysql query from laravel If you are working on laravel 5 then you have to first enable query log that way it can be store query log At last getQueryLog through you can get last execut
You are working on laravel with mysql database you had created mysql procedure for get data and you want to call procedure with pagination in laravel 5 then you can not directly make pagination as laravel documentIf you are using directly MySQL stored Procedure in your controller model or reposit
You are working on laravel with mysql database you had created mysql procedure for get data and you want to call procedure with pagination in laravel 5 then you can not directly make pagination as laravel documentIf you are using directly MySQL stored Procedure in your controller model or reposit
English: The Madrid MySQL Users Group is pleased to announce its next meeting on February 10th 2016 at 7pm at the offices of Tuenti in Gran Via, Madrid. Morgan Tocker of Oracle will be visiting to give a talk on MySQL 5.7 and JSON as part of a European tour. This will give you an an … Continue reading MMUG15: MySQL 5.7 & JSON
The post MMUG15: MySQL 5.7 & JSON first appeared on Simon J Mudd's Blog.
Percona is glad to announce the new release of Percona XtraDB Cluster 5.6 on January 11, 2016. Binaries are available from the downloads area or from our software repositories.
Percona XtraDB Cluster 5.6.27-25.13 is now the current release, based on the following:
[Read more]The password features in PHP aren't exactly new, but I see lots of applications from "before" which aren't being migrated to better practices. I have some strategies for doing these migrations so I thought I'd share my main approach, plus a similar-but-different one I saw in the wild (OK it was in CakePHP, so not too wild!).
The examples here assume that you currently have either unsalted or all-with-the-same-salt passwords stored in your database, hashed with md5 or sha1 or something. This is a Very Bad Idea (TM) since it's trivial to recover unsalted passwords and not all that hard to figure out same-salted ones.
Enter the password_hash() and
password_verify() functions which were included by
default in PHP 5.5 but are also available for PHP 5.3.9+ via a
userland implementation (see https://github.com/ircmaxell/password_compat). …