http://mtaalamu.ru ru (http://mtaalamu.ru) (http://mtaalamu.ru) http://mtaalamu.ru http://mtaalamu.ru SQLite Manager для Mozilla Firefox /blog/649.html /blog/649.html Sergei_T SQLite Manager — отличный плагин для Firefox, позволяющий работать с базами данных SQLite.

code.google.com/p/sqlite-manager


Очень понравилось удобное сохранение данных из полей типа BLOB:
]]>
Wed, 03 Mar 2010 20:23:38 +0300 SQL программирование Firefox Open Source SQLite
Пример чтения и сохранения файлов в базе данных SQLite на C в Linux /blog/648.html /blog/648.html Sergei_T Wed, 03 Mar 2010 20:03:57 +0300 SQL программирование Linux Open Source SQLite SQLite Database Browser в Ubuntu /blog/647.html /blog/647.html Sergei_T
sourceforge.net/projects/sqlitebrowser

Устанавливаем нужные инструменты для разработки на Qt4 (я использую Ubuntu 9.04):

sudo apt-get install qt4-dev-tools


Собираем SQLite Database Browser:]]>
Wed, 03 Mar 2010 19:56:54 +0300 SQL программирование Open Source Ubuntu SQLite
Массовое переименование таблиц базы данных MySQL /blog/164.html /blog/164.html Sergei_T
<?php  
$db_server = "localhost";    // hostname MySQL server  
$db_username = "username";   // username MySQL server  
$db_password = "password";   // password MySQL server  
$db_name = "database";       // database name  
  
$pattern = "pattern_";          // search string  
$new_pattern = "new_pattern_";  // replacement string,   
                                // can be empty  
 
// login to MySQL server  
$link = mysql_connect( $db_server, $db_username, $db_password);  
  
if (!$link)  
{  
  die('Could not connect: ' . mysql_error());  
}  
  
// list all tables in the database containing the search pattern  
$sql = "SHOW TABLES FROM `" . $db_name . "`";  
$sql .= " LIKE '%" . $pattern . "%'";  
  
$result = mysql_query ( $sql, $link );  
if (!$result)  
{  
  die("Invalid query: " . mysql_error( $link ));  
}  
  
$renamed = 0;  
$failed = 0;  
  
while ( $row = mysql_fetch_array ($result) )  
{  
  // rename every table by replacing the search pattern   
  // with a new pattern  
  $table_name = $row[0];  
  $new_table_name = str_replace ( $pattern, $new_pattern, $table_name);  
  
  $sql = "RENAME TABLE `" . $db_name . "`.`" . $table_name . "`";  
  $sql .= " TO `" . $db_name . "`.`" . $new_table_name . "`";  
  
  $result_rename = mysql_query ( $sql, $link );  
  if ($result_rename)  
  {  
    echo "Table `" . $table_name . "` renamed to :`";  
    echo $new_table_name . "`.\n";  
    $renamed++;  
  }  
  else  
  {  
    // notify when the renaming failed and show reason why  
    echo "Renaming of table `" . $table_name . "` has failed: ";  
    echo mysql_error( $link ) . "\n";  
    $failed++;  
  }  
}  
  
echo $renamed . " tables were renamed, " . $failed . " failed.\n";  
  
// close connection to MySQL server  
mysql_close( $link );  
?>


Нашел здесь.]]>
Thu, 12 Nov 2009 17:52:33 +0300 MySQL PHP SQL
Перенос движка LiveStreet на другой домен /blog/163.html /blog/163.html Sergei_T
UPDATE `prefix_topic_content` SET `topic_text` = REPLACE(`topic_text`, "http://old.ru", "http://new.ru")

UPDATE `prefix_topic_content` SET `topic_text_short` = REPLACE(`topic_text_short`, "http://old.ru", "http://new.ru")

UPDATE `prefix_topic_content` SET `topic_text_source` = REPLACE(`topic_text_source`, "http://old.ru", "http://new.ru")

UPDATE `prefix_topic_comment` SET `comment_text` = REPLACE(`comment_text`, "http://old.ru", "http://new.ru")


Спасибо Mihael за совет!]]>
Thu, 12 Nov 2009 17:31:21 +0300 SQL MySQL LiveStreet