March 11 2010 22:36:40
Navigation
Last Seen Users
Kevin2009< 5 mins
mafiotabg< 5 mins
Nemo_O00:07:00
MasteR_SVK00:14:27
afoster00:20:45
Silentneeb00:22:08
klopdd00:22:57
DJ-SKY00:24:00
Lukass44500:24:48
ST6600:33:11

Members: 13,490
Newest: weaser
Blogs
Diemux
» 18-09-2009 - Say ...
Diemux
» 10-07-2009 - Will...
Diemux
» 24-06-2009 - Blog...
elyn
» Elyn + Streamyx (...
Diemux
» 19-05-2009 - Thin...
Diemux
» 15-05-2009 - Week...
Diemux
» 13-05-2009 - Comp...
elyn
» Number 1925
Diemux
» Number One
Things to Do
Latest Articles
Protect your Fusion ...
Change your database...
Handling MySQL Datab...
Admin Control Panel ...
How to Secure Your I...
Show Content by Defa...
v7 | Add social book...
v7 | Custom MySQL er...
How To: A PM after r...
v7 | SEO friendly UR...
v7 | SEO friendly UR...
Comments Advanced Vi...
Auto-redirect to the...
A tour through PHP-F...
Upgrading to PHP-Fus...

View all articles
Downloads v7
Currently popular Downloads

FusionBoard 4 3160
Video Gallery 2271
Professional Down... 2231
Photoalbum Mass U... 2053
Avatar Studio 1995
Extended Profile 1687
VArcade 2.1 1582
HighSlide Gallery... 1559
XHTML mod for mod... 1443
Button panel 1439

Latest Downloads


User Info [Remade] 272
BBcode: AVI 6
Pimped PHP-Fusion 4
XHTML mod for modern... 1443
Banner Rotater 865
Who's Where Panel 733
VU Tab Panel 382
Viewlog Script 186
Usergroup Management 658
Unauthenicated User 185

Latest 100
Downloads v6
Currently popular Downloads

Banner System v2.0.4 1412
Video Gallery 1064
Extreme Theme Editor 815
Fuzed Shoutbox 705
Seoname.php 664
Icon Package 2.0 651
Extended Profile ... 610
EXTboard 542
News.php 541
Tabbed welcome panel 489

Latest Downloads


Google Sitemap Fast 4
ExtBoard 1.2 366
EXTboard 542
v6.01.18 - v6.01.19 20
v6.01.19 FULL 54
Birthday 88
Moneybookers 32
User info 74
Link to us 245
jNews.php 312

Latest 100
Provider
PHPfusion-mods.net is hosted at:

110MB
Handling MySQL Database on php-Fusion
Before i start anything, i will hereby take for granted that you (reader) understand/know/learn MySQL to a certain level. Even, if you don't know anything about MySQL, this might help you start. And now, we may start.

MySQL database functions code snippets

function dbquery($query) {
}

function dbcount($field, $table, $conditions = "") {
}

function dbresult($query, $row) {
}

function dbrows($query) {
}

function dbarray($query) {
}

function dbarraynum($query) {
}



These are the functions' declarations on maincore.php. No, you don't have to open maincore.php, this is just a sample i wanted you all to look. From there, it should provide you with some idea of how this functions works. If you don't seems to understand the idea, don't worry. i'll will explain each functions.

1. dbquery($query)
This function executes a query on a MySQL database and then it returns a value. If the query failed, it will produce error message and return "false".

dbquery() is followed up by other function listed above accept for dbcount(). There are only one parameter for this function: the SQL query. Like mysql_query(), dbquery() is also used for UPDATE, DELETE, INSERT, and CREATE. You won't be using CREATE though.

Examples
see examples for other functions except dbcount(). :P


2. dbcount($field, $table, $conditions = "")
This function executes a COUNT query on a MySQL database and then it returns a value. COUNT query means it counts the total value of records found. If the query failed, it will produce error message and return "false".

dbcount() does not requires a result from dbquery(). dbcount() is usually used for paginations.
dbcount() has 3 parameters, two of which are required.
first paramenter -> $field
signifies which field in the table to be count
second parameter -> $table
signifies which table to be count
$conditions = ""
signifies the conditions of the field that need to be met.
conditions in MySQL is the
"WHERE field_name = 'some_value' AND field_name2 = 'other_value'"

Examples
this example returns the values of increment of 10 starting from 0. e.g, 0, 10, 20, 30 .. and so forth


$count = dbcount("(data_id)", DB_DATA, "data_access='".$d_ac.");
$count = ($count / 10) - 1;
$d_count = ceil($count) * 10;
if (!$d_count){
$d['error'] = "Cannot count data";
}


3. dbresult($query, $row)
A clone of the mysql_result() function that returns the value of a field in a recordset. If the query failed, it will produce error message and return "false".

dbresult() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA." WHERE data_id = '{$_GET['p']}'";
$result = dbquery($query);
$d['name'] = dbresult($result, 1);
if (!$d['name']){
$d['error'] = "No Name found";
}


4. dbrows($query)
A clone of the mysql_num_rows() function that returns the number of rows in a recordset. If the query failed, it will produce error message and return "false".

dbrows() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA.";
$result = dbquery($query);
$d_rows = dbrows($result);
if (!$d_rows){
$d['error'] = "Cannot count rows in data table";
}



5. dbarray($query)
A clone of the mysql_fetch_assoc() function that returns a row from a recordset as an associative array. If the query failed, it will produce error message and return "false".

dbarray() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA." WHERE data_id = '{$_GET['p']}'";
$result = dbquery($query);
if($db = dbarray($result)){
$d['id'] = $db['data_id'];
$d['name'] = $db['data_name'];
$d['desc'] = $db['data_desc'];
$d['access'] = $db['data_access'];
}
else{
$d['error'] = "No data found";
}


6. dbarraynum($query)
A clone of the mysql_fetch_row() function that returns a row from a recordset as a numeric array. If the query failed, it will produce error message and return "false". This function is very similar to dbarray, you will understand after reading the example

dbarraynum() requires the return value from dbquery(). Because the return value specifies which result handle to use.

Examples

$query = "SELECT * FROM ".DB_DATA." WHERE data_id = '{$_GET['p']}'";
$result = dbquery($query);
$d = dbarraynum($result)
if(empty($d['id'])){
$error = "No data found";
}
Comments
#1rvt on April 19 2009 15:04:18
rvt
Under 4. dbrows($query)
you mention that dbrows returns false when the query fails,
however you check the return value like this if (!$d_rows) {....}
You should be using this:
if ($d_rows===false) {..... querie failed ...}

other examples:
if ($d_rows===0) {..... query returned 0 rows (but not false) ...}
if ($d_rows>0) {..... query returned more then one row...}

In your case you would throw that error when when the number of rows from the query would be zero (0) whish is perfeclty fine for some queries.
#2elyn on May 27 2009 23:27:15
elyn
test
Post Comment
Please Login to Post a Comment.
Ratings
Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Login
Username

Password



Not a member yet?
Click here to register.

Forgotten your password?
Request a new one here.
Our Coders
Rizald 'Elyn' Maxwell
Diemux
Netrix
Donate
Shoutbox
You must login to post a message.

11/03/2010 16:55
New spammer: deal202 That really suxx!

11/03/2010 13:57
Support question? Post in the forums!

11/03/2010 02:24
@Diemux: Important PM for you.

10/03/2010 20:10
Cool, added the download again Smile. Also cleaned inbox Smile

10/03/2010 13:41
Ohh - your inbox is full btw!

10/03/2010 13:40
@Diemux: I've re-coded the naptzer_user_info - from the "z-dump". You can DL it from here: www.dvdside.dk/do.
..r_info.zip

10/03/2010 00:07
So if you have some spare time Smile

10/03/2010 00:07
Introduced the "z dumb" category in v7 downloads. There reside the infusions who need some TLC to work again.

09/03/2010 19:35
Removed spam.

09/03/2010 17:38
New spammer: dottech Thumb Down!

Advertiser
One-click Translation
Translate This Site

Render time: 0.18 seconds 3,989,469 unique visits