Basic Usage of TDP.NET
Development Steps
1. Adding a namespace
using Tibero.DataAccess.Client;2. Connecting to a database
string connStr = "Data Source=((INSTANCE="
+ "(HOST=localhost)(PORT=8629)(DB_NAME=dbsvr)));"
+ "User Id=tibero;Password=tmax;";
TbieroConnection conn = new TiberoConnection(connStr);
conn.Open();3. Creating the TiberoCommand object and executing an SQL statement
4. Executing a query statement and getting the TiberoDataReader object
5. Handling the TiberoDataReader object
6. Executing a query statement with TiberoDataAdapter
7. Closing a database connection
8. Disposing objects
Connection Properties
Data Types
Basic Examples
Parameter binding with BindByName setting
Typical parameter binding
Calling PSM
Last updated

