Seasons In The Sun
几个月前答应给人推荐一些英文歌曲,不曾想年纪大了容易忘事。今日突然想起,先来第一首:westlife seasons in the sun
[youtube]J7w7dGqLWys[/youtube]
Continue reading…
几个月前答应给人推荐一些英文歌曲,不曾想年纪大了容易忘事。今日突然想起,先来第一首:westlife seasons in the sun
[youtube]J7w7dGqLWys[/youtube]
Continue reading…
Everything has changed.
Nothing feels the same.
Everyting has to go on.
原先在php下写了个操作数据库的类,用jscript又重写了一遍。
// Sample
var db = new dbstuff();
db.connect(dbserver, dbuser, dbpwd, dbname);
var sql = "SELECT @@VERSION as dbv";
var query = db.query(sql);
while(arr = db.fetch_array(query)){
echo(arr["dbv"]);
}
db.close();
adodb 实在太庞大了,况且也不需要那么多的功能,就自己写了一个 PHP 操作 SQL Server 的类。带有强烈的 discuz 风格。
// sample
$db = new dbstuff;
$db->connect($dbserver, $dbuser, $dbpwd, $dbname, $codepage);