
I usually used phpmyadmin to work with mySQL, but today my gaze was directed to a new SQL buddy solution, I downloaded, downloaded to my server, and ...
And this is just super! This should be convenient work with the database!
Perhaps “SQL buddy” doesn’t have as many advanced features as “phpmyadmin”, but it works fine for routine and small jobs.
I was glad to find that the Russian language is already included in the basic build of the script.

')
We list the main advantages of this solution:
- Convenience of work - a pleasant interface, usable tables, the main functions are called up using keyboard shortcuts (abbreviations are generally class).
- The speed of work and the load on the server - SQL buddy is very actively using ajax technology, which greatly speeds up the script.
- Installation is not needed - you do not need to install and configure the script, just upload and use it.
- This open source solution is licensed under the MIT license.
- The small size of the script - 167 kilobytes.
Now I found the flaws:
- There are some non-translated places - but this can be easily corrected, since the translation can be done all together on the SQL buddy website.
- Some of my tables do not display Cyrillic, an annoying glitch, but I think it will not be difficult to fix it.
In the near future, I’ll move from “phpmyadmin” to “SQL buddy” to the end, because I think that using “SQL buddy” will be much more efficient and productive in the future.
Update :
Good enthusiasts have completed the translation, so enjoy the complete Russian translation.
Pokoinik solved the problem with the encoding.
To display the correct encoding, look for the line in the
functions.php
file:
return mysql_connect ($ _ SESSION ['SB_LOGIN_HOST'], $ _SESSION ['SB_LOGIN_USER'], $ _SESSION ['SB_LOGIN_PASS']);
And replace it with:
$ con = mysql_connect ($ _ SESSION ['SB_LOGIN_HOST'], $ _SESSION ['SB_LOGIN_USER'], $ _SESSION ['SB_LOGIN_PASS']);
@mysql_query ("SET NAMES 'utf8'", $ con);
return $ con;
Visit SQL Buddy website (English)
View demo script (Installed especially for you)
Subscribe to Chernev's notes via RSS