1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-29 12:20:51 +02:00
ttrss/include/db.php

37 lines
689 B
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
2013-04-17 14:23:15 +02:00
function db_escape_string( $s, $strip_tags = true) {
2013-04-17 13:36:34 +02:00
return Db::get()->escape_string($s, $strip_tags);
}
2013-04-17 14:23:15 +02:00
function db_query( $query, $die_on_error = true) {
2013-04-17 13:36:34 +02:00
return Db::get()->query($query, $die_on_error);
}
function db_fetch_assoc($result) {
2013-04-17 13:36:34 +02:00
return Db::get()->fetch_assoc($result);
}
function db_num_rows($result) {
2013-04-17 13:36:34 +02:00
return Db::get()->num_rows($result);
}
function db_fetch_result($result, $row, $param) {
2013-04-17 13:36:34 +02:00
return Db::get()->fetch_result($result, $row, $param);
}
2013-04-17 14:23:15 +02:00
function db_affected_rows( $result) {
2013-04-17 13:36:34 +02:00
return Db::get()->affected_rows($result);
2006-05-16 14:56:53 +02:00
}
2013-04-17 14:23:15 +02:00
function db_last_error() {
2013-04-17 13:36:34 +02:00
return Db::get()->last_error();
}
function db_quote($str){
2013-04-17 13:36:34 +02:00
return Db::get()->quote($str);
}
?>