📜 ⬆️ ⬇️

Convenient solution for working with the database

logo_by_chernev
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.

sdfsdf
')

We list the main advantages of this solution:



Now I found the flaws:


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

Source: https://habr.com/ru/post/37306/


All Articles