ttrss/include/db.php

45 lines
850 B
PHP
Raw Normal View History

2006-08-19 07:04:45 +00:00
<?php
function db_connect($host, $user, $pass, $db) {
2013-04-17 11:36:34 +00:00
return Db::get()->connect($host, $user, $pass, $db, 0);
}
2013-04-17 12:23:15 +00:00
function db_escape_string( $s, $strip_tags = true) {
2013-04-17 11:36:34 +00:00
return Db::get()->escape_string($s, $strip_tags);
}
2013-04-17 12:23:15 +00:00
function db_query( $query, $die_on_error = true) {
2013-04-17 11:36:34 +00:00
return Db::get()->query($query, $die_on_error);
}
function db_fetch_assoc($result) {
2013-04-17 11:36:34 +00:00
return Db::get()->fetch_assoc($result);
}
function db_num_rows($result) {
2013-04-17 11:36:34 +00:00
return Db::get()->num_rows($result);
}
function db_fetch_result($result, $row, $param) {
2013-04-17 11:36:34 +00:00
return Db::get()->fetch_result($result, $row, $param);
}
2013-04-17 12:23:15 +00:00
function db_close() {
2013-04-17 11:36:34 +00:00
return Db::get()->close();
}
2005-10-17 03:45:44 +00:00
2013-04-17 12:23:15 +00:00
function db_affected_rows( $result) {
2013-04-17 11:36:34 +00:00
return Db::get()->affected_rows($result);
2006-05-16 12:56:53 +00:00
}
2013-04-17 12:23:15 +00:00
function db_last_error() {
2013-04-17 11:36:34 +00:00
return Db::get()->last_error();
}
function db_quote($str){
2013-04-17 11:36:34 +00:00
return Db::get()->quote($str);
}
?>