Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > PHP Manual > maxdb_query - Performs a query on the database





ลองใช้ค้นหาข้อมูล


   
Bookmark.

maxdb_query

maxdb->query

(PECL maxdb:1.0-7.6.00.38)

maxdb_query -- maxdb->queryPerforms a query on the database

Description

Procedural style:

mixed maxdb_query ( resource $link , string $query [, int $resultmode ] )

Object oriented style (method):

maxdb
mixed query ( string $query )

The maxdb_query() function is used to simplify the act of performing a query against the database represented by the link parameter.

Return Values

Returns TRUE on success or FALSE on failure. For SELECT, SHOW, DESCRIBE or EXPLAIN maxdb_query() will return a result resource.

Examples

Example #1 Object oriented style

<?php
$maxdb 
= new maxdb("localhost""MONA""RED""DEMODB");

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

/* Create table doesn't return a resultset */
if ($maxdb->query("CREATE TABLE temp.mycity LIKE hotel.city") === TRUE) {
   
printf("Table mycity successfully created.\n");
}

/* Select queries return a resultset */
if ($result $maxdb->query("SELECT name FROM hotel.city")) {
   
printf("Select returned %d rows.\n"$result->num_rows);

   
/* free result set */
   
$result->close();
}

/* If we have to retrieve large amount of data we use MAXDB_USE_RESULT */
if ($result $maxdb->query("SELECT * FROM hotel.city"MAXDB_USE_RESULT)) {
   
$result->close();
}

$maxdb->close();
?>

Example #2 Procedural style

<?php
$link 
maxdb_connect("localhost""MONA""RED""DEMODB");

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

/* Create table doesn't return a resultset */
if (maxdb_query($link"CREATE TABLE temp.mycity LIKE hotel.city") === TRUE) {
   
printf("Table mycity successfully created.\n");
}

/* Select queries return a resultset */
if ($result maxdb_query($link"SELECT name FROM hotel.city")) {
   
printf("Select returned %d rows.\n"maxdb_num_rows($result));

   
/* free result set */
   
maxdb_free_result($result);
}

/* If we have to retrieve large amount of data we use MAXDB_USE_RESULT */
if ($result maxdb_query($link"SELECT * FROM hotel.city"MAXDB_USE_RESULT)) {
   
maxdb_free_result($result);
}

maxdb_close($link);
?>

The above example will output something similar to:

Table mycity successfully created.
Select returned 25 rows.


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่