|
|
|
ทำไงดี : การเพิ่มข้อมูลลงใน base SQL SERVER อยากทราบว่า ถ้าจะเอาข้อมูลที่แสดงในหน้า REPORT |
|
|
|
|
|
|
|
ใช้คำสั่งตัดคำครับ
ลองไปหาดูในหนังสืออ่ะครับ คำสั่งพวก midb อ่ะครับ
เช่นรหัสนักศึกษา 42430001
ก็ให้ตัดสองตัวแรกออกมา คือ 42 กำหนดไว้ที่ตัวแปร 1
ตัด 430001 ออกมาเก็บไว้ในตัวแปรที่ 2
แล้วค่อยเอาตัวแปรไปแทนค่าเก็บลงฐานข้อมูลอีกทีครับ
|
|
|
|
|
Date :
27 มี.ค. 2548 19:40:56 |
By :
gototon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (AspSQLServerAddForm.asp)
<html>
<head>
<title>ThaiCreate.Com ASP & SQL Server Tutorial</title>
</head>
<body>
<form action="ASPSQLServerAddSave.asp" 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>
Code (AspSQLServerAddSave.asp)
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP & SQL Server Tutorial</title>
</head>
<body>
<%
Dim Conn,strSQL,objExec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "Driver={SQL Server};Server=localhost;Database=mydatabase;UID=sa;PWD=;"
strSQL = ""
strSQL = strSQL &"INSERT INTO customer "
strSQL = strSQL &"(CustomerID,Name,Email,CountryCode,Budget,Used) "
strSQL = strSQL &"VALUES "
strSQL = strSQL &"('"&Request.Form("txtCustomerID")&"', '"&Request.Form("txtName")&"','"&Request.Form("txtEmail")&"' "
strSQL = strSQL &",'"&Request.Form("txtCountryCode")&"', '"&Request.Form("txtBudget")&"','"&Request.Form("txtUsed")&"') "
Set objExec = Conn.Execute(strSQL)
If Err.Number = 0 Then
Response.write("Save Done.")
Else
Response.write("Error Save ["&strSQL&"] ("&Err.Description&")")
End If
Conn.Close()
Set objExec = Nothing
Set Conn = Nothing
%>
</body>
</html>
Go to : ASP and SQL Server 2005
|
|
|
|
|
Date :
2009-04-26 10:26:29 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนขอเมล์mr.winได้มั้ยครับ คือผมมีเรื่องอยากถามอ่ะครับเกี่ยวกับ sql server 2005
|
|
|
|
|
Date :
2010-01-29 20:58:26 |
By :
shadowangle |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถามในกระทู้นี่แหละครับ
|
|
|
|
|
Date :
2011-12-07 13:42:32 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ID="4243001"
a=left("ID",2) <-- ปี
b=mid("ID",3,2) <-- รหัสคณะ
c=right("ID",3) <--- เลขประจำตัว
ลองนำไปใช้ดูครับ
|
|
|
|
|
Date :
2011-12-07 17:18:21 |
By :
yatard |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|