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 > PHP Oracle > PHP Oracle Check Already Exists Add/Insert Record



Clound SSD Virtual Server

PHP Oracle Check Already Exists Add/Insert Record

PHP Oracle Check Already Exists Add/Insert Record ตัวอย่างนี้จะเป็นการเขียนโปรแกรม PHP กับ Oracle ตรวจสอบข้อมูลก่อนเพิ่มข้อมูลลงใน Table


PHP Oracle Config OCI8 Support


ตัวอย่าง

phpOracleCheckExistRecordAddForm.php

<html>
<head>
<title>ThaiCreate.Com PHP & Oracle Tutorial</title>
</head>
<body>
<form action="phpOracleCheckExistRecordAddSave.php" name="frmAdd" method="post">
<table width="600" border="1">
  <tr>
    <th width="91"> <div align="center">CustomerID </div></th>
    <th width="160"> <div align="center">Name </div></th>
    <th width="198"> <div align="center">Email </div></th>
    <th width="97"> <div align="center">CountryCode </div></th>
    <th width="70"> <div align="center">Budget </div></th>
    <th width="70"> <div align="center">Used </div></th>
  </tr>
  <tr>
    <td><div align="center"><input type="text" name="txtCustomerID" size="5"></div></td>
    <td><input type="text" name="txtName" size="20"></td>
    <td><input type="text" name="txtEmail" size="20"></td>
    <td><div align="center"><input type="text" name="txtCountryCode" size="2"></div></td>
    <td align="right"><input type="text" name="txtBudget" size="5"></td>
    <td align="right"><input type="text" name="txtUsed" size="5"></td>
  </tr>
  </table>
  <input type="submit" name="submit" value="submit">
  </form>
</body>
</html>

Screenshot

PHP & Oracle



phpOracleCheckExistRecordAddSave.php

<html>
<head>
<title>ThaiCreate.Com PHP & Oracle Tutorial</title>
</head>
<body>
<?php
$objConnect = oci_connect("myuser","mypassword","TCDB");
$strSQL = "SELECT * FROM CUSTOMER WHERE CUSTOMERID = '".$_POST["txtCustomerID"]."' ";
$objParse = oci_parse ($objConnect, $strSQL);
oci_execute ($objParse,OCI_DEFAULT);
$objResult = oci_fetch_array($objParse);
if($objResult)
{
		echo "CustomerID already exist.";
}
else
{

	$strSQL = "";
	$strSQL = "INSERT INTO CUSTOMER ";
	$strSQL .="(CUSTOMERID,NAME,EMAIL,COUNTRYCODE,BUDGET,USED) ";
	$strSQL .="VALUES ";
	$strSQL .="('".$_POST["txtCustomerID"]."','".$_POST["txtName"]."','".$_POST["txtEmail"]."' ";
	$strSQL .=",'".$_POST["txtCountryCode"]."','".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
	$objParse = oci_parse($objConnect, $strSQL);
	$objExecute = oci_execute($objParse,OCI_DEFAULT);
	if($objExecute)
	{
		oci_commit($objConnect); //*** Commit Transaction ***//
		echo "Save Done.";
	}
	else
	{
		oci_rollback($objConnect); //*** RollBack Transaction ***//
		echo "Error Save [".$strSQL."";
	}
}
oci_close($objConnect);
?>
</body>
</html>









Screenshot

PHP & Oracle


Oracle Server Tutorials



Reference : https://www.thaicreate.com/php-manual/ref.oci8.html


   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


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


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-08-20 18:59:01 / 2017-03-15 10:23:08
  Download : Download  PHP Oracle Check Already Exists Add/Insert Record
 Sponsored Links / Related

 
PHP Oracle Config OCI8 Support
Rating :

 
PHP Oracle Config OCI/OCI8 (XAMPP Web Server)
Rating :

 
PHP Oracle Connect to Database
Rating :

 
PHP Oracle List Table Properties
Rating :

 
PHP Oracle List Record
Rating :

 
PHP Oracle Random Record
Rating :

 
PHP Oracle List Record Paging/Pagination
Rating :

 
PHP Oracle Search Record
Rating :

 
PHP Oracle Search Record Paging/Pagination
Rating :

 
PHP Oracle Multiple Column
Rating :

 
PHP Oracle Multiple Column and Paging/Pagination
Rating :

 
PHP Oracle Add/Insert Record
Rating :

 
PHP Oracle Edit/Update Record
Rating :

 
PHP Oracle Delete Record
Rating :

 
PHP Oracle Multiple Checkbox Delete Record
Rating :

 
PHP Oracle Transaction (oci_rollback,oci_commit)
Rating :

 
PHP Oracle Used Include Function
Rating :

 
PHP Oracle Used Function Database Query
Rating :

 
PHP Oracle Database Class
Rating :


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 00
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 อัตราราคา คลิกที่นี่