12345678910111213141516171819202122232425262728293031323334Transaction itr_temp //기본 연결itr_temp = CREATE transactionitr_temp.DBMS = "MSS Microsoft SQL Server"itr_temp.Database = "sample_database"itr_temp.LogPass = "abcd1234"itr_temp.ServerName = "192.168.1.100"itr_temp.LogId = "sa"itr_temp.AutoCommit = Falseitr_temp.DBParm = "" CONNECT USING itr_temp; //Connection CheckIF itr_temp.SQLCode 0 THEN..