jclass cls = m_env->FindClass("java/sql/Time");
if (m_env->IsInstanceOf(pLine, cls) == JNI_TRUE) {
jmethodID intValue = m_env->GetMethodID(cls, "getTime", "()J");
jlong iVal = (jlong)m_env->CallLongMethod(pLine, intValue);
COleDateTime da = COleDateTime(iVal / 1000);
string strValue = da.Format("%H:%M:%S");
wstring w = TComHelper::MultCHarToWideChar(strValue);
vParam.vt = VT_BSTR;
vParam.bstrVal = ::SysAllocString(w.c_str());
}