July 31 2010 23:56:38
Navigation
Last Seen Users
Deus< 5 mins
davidbusch< 5 mins
Assensvej00:56:33
hooz01:03:54
Narco01:05:18
KissXme01:15:46
schweinebob01:34:17
bigcarrot01:47:06
foc_in_gaura02:04:50
vannix02:21:13

Members: 15,625
Newest: KissXme
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
A tour through the n...
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...

View all articles
Downloads v7
Currently popular Downloads

FusionBoard 4 3859
Video Gallery 2749
Professional Down... 2497
Photoalbum Mass U... 2427
Avatar Studio 2287
Extended Profile 1863
XHTML mod for mod... 1808
Button panel 1789
VArcade 2.1 1778
HighSlide Gallery... 1762

Latest Downloads


XHTML mod for modern... 1808
Pimped-Fusion v0.08.01 4
Update Package v0.08.01 0
Support Panel-Skype 7
Header Weather Widget 59
Forum Thread List Pa... 23
Meta Keywords/Descri... 73
Security System 127
User Field: US State... 24
Forum sub categories... 135

Latest 100
Downloads v6
Currently popular Downloads

Banner System v2.0.4 1648
Video Gallery 1183
Extreme Theme Editor 887
Fuzed Shoutbox 789
Seoname.php 736
Icon Package 2.0 687
Extended Profile ... 648
News.php 578
EXTboard 549
Tabbed welcome panel 518

Latest Downloads


Google Sitemap Fast 46
ExtBoard 1.2 381
EXTboard 549
v6.01.18 - v6.01.19 27
v6.01.19 FULL 81
Birthday 111
Moneybookers 43
User info 100
Link to us 259
jNews.php 339

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.

Awesome! Awesome! 0% [No Votes]
Very Good Very Good 100% [1 Vote]
Good Good 0% [No Votes]
Average Average 0% [No Votes]
Poor Poor 0% [No Votes]
Login
Username

Password



Not a member yet?
Click here to register.

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

31/07/2010 17:39
Never mind. Got it now.

31/07/2010 17:32
I am looking for the developers pack that used to be here. This pack gave you the basic outline to start from.

30/07/2010 14:35
I'm new here, lurking and downloading ur hard work now ! Cheers!

30/07/2010 08:47
thankkkkks........
..................
..................
........... Cheers! Ventilator

29/07/2010 19:25
Sorry about the previous Shouts and post in theforums regarding lisence. I got a bit power hungry when I USED to be crew. Thumb Up!

29/07/2010 09:54
... and now he's banned. Thumb Up!

29/07/2010 08:55
hyzhy = spambot

28/07/2010 16:26
Thumb Up!

28/07/2010 16:20
@AKC_Pico said he purchased the licence and you still left him a message...

28/07/2010 16:14
Is "PHP-Fusion By Nick Jones" is sufficient?

Advertiser
One-click Translation
Translate This Site

Render time: 0.14 seconds 5,063,440 unique visits