ADO Mode Property
Complete Record Object Reference
The Mode property sets or returns a ConnectModeEnum
value that indicates the permission for modifying data in a Connection, Record, or Stream object.
This property is read/write when an object is closed, and read-only when an object is open.
- Connection object - Default is adModeUnknown
- Record object - Default is adModeRead
- Stream object - Default is adModeRead or adModeUnknown
Note: This property can be set only when the Connection object is closed.
Syntax
Example
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Mode=adModeReadWrite
conn.Open(Server.Mappath("northwind.mdb"))
response.write(conn.Mode)
conn.Close
%>
|
ConnectModeEnum
| Constant |
Value |
Description |
| adModeUnknown |
0 |
Permissions have not been set or cannot be determined. |
| adModeRead |
1 |
Read-only. |
| adModeWrite |
2 |
Write-only. |
| adModeReadWrite |
3 |
Read/write. |
| adModeShareDenyRead |
4 |
Prevents others from opening a connection with read
permissions. |
| adModeShareDenyWrite |
8 |
Prevents others from opening a connection with write
permissions. |
| adModeShareExclusive |
12 |
Prevents others from opening a connection. |
| adModeShareDenyNone |
16 |
Allows others to open a connection with any permissions. |
| adModeRecursive |
0x400000 |
Used with adModeShareDenyNone, adModeShareDenyWrite, or
adModeShareDenyRead to set permissions on all sub-records of the current
Record. |
Complete Record Object Reference
 |
 |
 |
 |
|
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |
 |
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |
 |
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Utilize the extensive out-of-the box features or customize your site through Ektron CMS400.NET's open architecture |
 |
Promote collaboration in your organization through project workspaces where others can efficiently find information and work together |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
|
|
 |
TAKE THE VIDEO TOUR |
 |
or download a FREE TRIAL today. |
|