<< Click to Display Table of Contents >>
GetDataModule
데이터 모듈을 가져옵니다.
Prototype
object GetDataModule()
Example
var dm = This.GetDataModule();
var ds = dm.GetDataStore("DataStoreName");
var con = ds.GetConnection();
var stmt = con.CreateStatement();
var rs = stmt.ExecuteQuery("select * from customer");
rs.Close();
stmt.Close();