Blogs

MySQL Joins Microsoft Visual Studio Industry Partner Program

Open Source Database Vendor to Support the Strong & Vibrant Microsoft Development Community

London -- June 27, 2006 -- MySQL AB, the developer of the world’s most popular open source database, today announced its participation in the Microsoft Visual Studio Industry Partner (VSIP) program as an Alliance-level partner. With over 240 members, Microsoft’s VSIP program gives partners the tools and resources they need to successfully integrate their tools, components and services into the Visual Studio 2005 development environment.

The announcement was made this morning at the inaugural European Open Source Business Conference being held this week at The Brewery event centre, Chiswell Street, London.

”By joining the VSIP program, MySQL is providing its community of developers with more flexibility in building and deploying data driven applications that target the Windows platform,” said Bill Hilf, general manager of platform strategy at Microsoft Corp. “Their decision to join the program highlights the spectrum of developers that are taking advantage of the reliability provided by Windows Server.”

技术相关:

辞职了

终于还是决定走人了,下一个公司的事情会比较多,因此文档翻译的进度应该会受到影响,请见谅!

个人涂鸦:

外企上班族常用的英语对话

1. In the middle of something?
正在忙吗?

很多人都会说"Are you busy?"。其实老美也常用 "In the middle of something?"。但这句话比较接近于 "Are you busy right now?",是问人家"现在"是不是正在忙。"Are you busy?" 的含意比较广,也可指"最近"忙不忙。

2. What are you up to?
你正在作什么?

我们都会说"What are you doing?"。"What are you up to?" 同样也是问人家正在作什么。有时候老美见面时也会问 "What are you up to?",意思就是问“你最近在做什么啊?”跟另一句问候语 "What's up?" 意思上很接近。但是你要听清对方的语气喔! 有时候 "What are you up to?" 指的虽然还是 "What are you doing?",但它却是"你在搞什么鬼啊?"的意思。例如当你看到别人在乱翻你的东西, 你就可以责问他:"Hey, what are you up to?",也就是骂他"你在搞什么鬼啊?"。

个人涂鸦:

MySQL Builds Momentum in Telecom Sector

come from:http://www.mysql.com

Tiger Communications, XOU Solutions & Anam Mobile Join Growing List of Telecom Companies Adopting Open Source Database

LONDON -- June 14, 2006 -- MySQL AB, the developer of the world's most popular open source database, is seeing growing momentum in the UK-Ireland telecommunications sector with Tiger Communications, XOU Solutions and Anam Mobile leading a growing number of businesses adopting MySQL® open source database solutions.
MySQL's success in the UK-Ireland telecom sector is reflected elsewhere in Europe. Alcatel, Nokia, Ericsson, Telio and Nortel have all selected MySQL products for important applications in the recent past.

Tiger Communications, a leading global supplier of powerful solutions for voice traffic management, billing and networks in the commercial and hospitality markets, has selected MySQL as the database engine for its Tiger 2020 Pro and Tiger Hotel Pro products.

技术相关:

用PHP控制您的浏览器cache

用PHP控制您的浏览器cache

Output Control 函数可以让你自由控制脚本中数据的输出。它非常地有用,特别是对于:当你想在数据已经输出后,再输出文件头的情况。输出控制函数不对使用 header() 或 setcookie(), 发送的文件头信息产生影响,只对那些类似于 echo() 和 PHP 代码的数据块有作用。

我们先举一个简单的例子,让大家对Output Control有一个大致的印象:
Example 1.

ob_start(); //打开缓冲区
echo \"Hellon\"; //输出
header(“location:index.php”); //把浏览器重定向到index.php
ob_end_flush();//输出全部内容到浏览器
?>

所有对header()函数有了解的人都知道,这个函数会发送一段文件头给浏览器,但是如果在使用这个函数之前已经有了任何输出(包括空输出,比如空格,回车和换行)就会提示出错。如果我们去掉第一行的ob_start(),再执行此程序,我们会发现得到了一条错误提示:“Header had all ready send by”!但是加上ob_start,就不会提示出错,原因是当打开了缓冲区,echo后面的字符不会输出到浏览器,而是保留在服务器,直到你使用 flush或者ob_end_flush才会输出,所以并不会有任何文件头输出的错误!

技术相关:

PHP中正则表达式详细说明

PHP中正则表达式详细说明

  PHP继承*NIX的一贯传统,完全支持正规表达式的处理。正规表达式提供了一种高级的,但不直观的字符串匹配和处理的方法。用过PERL的正规表达式的朋友都知道,正规表达式的功能非常强大,但学起来不是那么容易。
  比如:
  
  ^.+@.+\..+$
  
  这段有效却难以理解的代码足够使一些程序员头痛(我就是)或者让他们放弃使用正规表达式。相信当你读完这个教程后,就可以理解这段代码的含义了。
  
  基本模式匹配
  
  一切从最基本的开始。模式,是正规表达式最基本的元素,它们是一组描述字符串特征的字符。模式可以很简单,由普通的字符串组成,也可以非常复杂,往往用特殊的字符表示一个范围内的字符、重复出现,或表示上下文。例如:

技术相关:

php里实现js中escape

function escape($str) {
preg_match_all("/[\x80-\xff].|[\x01-\x7f]+/",$str,$r);
$ar = $r[0];
foreach($ar as $k=>$v) {
if(ord($v[0]) $ar[$k] = rawurlencode($v);
else
$ar[$k] = "%u".bin2hex(iconv("GB2312","UCS-2",$v));
}
return join("",$ar);
}

技术相关:

MySQL Helps Set World Record in Java Application Server Benchmarks

come from:http://www.mysql.com

High-Speed Open Source Software Blaze Past Proprietary Solutions

CUPERTINO, Calif. -- June 12, 2006 -- A popular application server benchmark, featuring a complete open source software stack with MySQL 5.0 database, the Solaris™ 10 Operating System, and Sun Java™ Systems Application Server 9.0 Platform Edition (Project GlassFish SM) has shattered the competition by offering up to 8.6 times lower cost of acquisition than the comparable solution (1,4), according to the benchmark test results published at http://www.spec.org/jAppServer2004/results/jAppServer2004.html.

Maintained by the Standard Performance Evaluation Corp. (SPEC®), the SPECjAppServer®2004 test is a recognized industry standard benchmark used to measure performance of Java EE application server platforms and each of the components that make up the application environment -- including hardware, database software, JDBC drivers, JVM software and the system network. It is designed to model a real-world automotive dealership application, including manufacturing, supply-chain management and an order/inventory system.

技术相关:

Leading French Retailers select MySQL for their Supply Chain Management

come from:http://www.mysql.com

Paris -- May 30, 2006 -- Franprix and Leader Price have chosen MySQL, the world's
most popular open source database, to manage the data in their
enterprise-wide supply chain and product distribution platforms -- servicing
over 620 Franprix stores and 490 Leader Price outlets.

The MySQL-based information system covers all the business needs of the
entire supply and distribution chain: from purchase management, order
preparation, warehouse logistics, and product inventory for all the Franprix
and Leader Price stores.

The retailers' IT group selected the open source database while migrating to
a more modern architecture and consolidating its hardware and software

技术相关:

A Practical Guide to Migrating From Oracle to MySQL

come from:http://www.mysql.com

Tuesday June 13 , 2006

With the rapid growth of MySQL in the database market, many corporations, government agencies, educational institutions, and others have begun to migrate away from their expensive and proprietary databases. Of course, a migration from any database is not something to be taken lightly, and so countless organizations are considering their options for migrating to MySQL.

In particular, many MySQL customers are migrating from Oracle because they have reached the conclusion that the combination of cost-savings and feature set of MySQL make for a compelling business case to offload some or all their database-driven applications to the MySQL database server.

技术相关:

页面

Subscribe to RSS - blogs