|
|
|
1. Command Object
Method
| เมธอด |
การส่งออก |
คำอธิบาย |
| Cancel |
|
ยกเลิกการประมวลผลของการเรียกใช้คำสั่ง Execute หรือ Open |
| CreateParameter |
Parameter Object |
สร้างอ๊อบเจค Parameter ใหม่ |
| Execute |
Recordset Object |
ประมวลผล คิวรี่, ประโยคคำสั่ง SQL หรือ stored procedure ที่ระบุในคุณสมบัติ CommandText |
Property
| คุณสมบัติ |
การส่งออก |
คำอธิบาย |
| ActiveConnection |
Variant
|
ชี้ถึงเจ้าของอ๊อบเจค Connection ปัจจุบัน |
| CommandText |
String |
เก็บข้อความของ command ที่ใช้ทำงานกับ provider |
| CommandTimeout |
Long |
ชี้ระยะเวลาในการรอคอย (เป็นวินาที) ขณะที่กำลังประมวลผล
command ก่อนหยุด command และสร้างความผิดพลาด มีค่าเริ่มต้น 30 วินาที |
| CommandType |
CommandTypeEnum |
ชี้ถึงประเภทของ command ที่ระบุโดยอ๊อบเจค Command |
| Name |
String |
ระบุชื่อของอ๊อบเจค Command |
| Prepared |
Boolean |
ชี้ถึงการให้บันทึกเวอร์ชันคอมไพล์ หรือไม่ก่อนการประมวลผลคำสั่ง |
| State |
Long |
อธิบายสถานะการปิดหรือเปิดของอ๊อบเจค Command และเป็นแบบอ่านอย่างเดียว |
Collection
| Collection |
การส่งออก |
คำอธิบาย |
| Parameters |
Parameters Collection |
เก็บอ๊อบเจค Parameter ทั้งหมดสำหรับอ๊อบเจค Command |
| Properties |
Properties Collection |
เก็บอ๊อบเจค Property ทั้งหมดสำหรับอ๊อบเจค
Command |
ไวยากรณ์ของเมธอด
| เมธอด |
ไวยากรณ์ |
|
Cancel
|
command.Cancel
|
|
CreateParameter
|
parameter = command.CreateParameter(Name As String,
Type As DataTypeEnum, Direction As ParameterDirectionEnum, Size
As Integer, [Value As Variant])
|
| Execute |
recordset = command.Execute(RecordsAffected As Variant,
Parameters As Variant, Options As Integer)
|
|

1
|
|