本文整理汇总了C#中OracleDataReader.GetInt32方法的典型用法代码示例。如果您正苦于以下问题:C# OracleDataReader.GetInt32方法的具体用法?C# OracleDataReader.GetInt32怎么用?C# OracleDataReader.GetInt32使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OracleDataReader
的用法示例。
在下文中一共展示了OracleDataReader.GetInt32方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var turno = new TurneroDto();
//
if (!reader.IsDBNull(_ordTurId)) { turno.TurId = reader.GetInt32(_ordTurId); }
//
if (!reader.IsDBNull(_ordTurTitulo)) { turno.TurTitulo = reader.GetString(_ordTurTitulo); }
//
if (!reader.IsDBNull(_ordTurDescripcion)) { turno.TurDescripcion = reader.GetString(_ordTurDescripcion); }
//
if (!reader.IsDBNull(_ordTurFechaIni)) { turno.TurFechaIni = reader.GetDateTime(_ordTurFechaIni); }
//
if (!reader.IsDBNull(_ordTurFechaFin)) { turno.TurFechaFin = reader.GetDateTime(_ordTurFechaFin); }
//
if (!reader.IsDBNull(_ordTurTodoDia)) { turno.TurTodoDia = reader.GetString(_ordTurTodoDia); }
//
if (!reader.IsDBNull(_ordTurPae)) { turno.TurPae = reader.GetInt32(_ordTurPae); }
//
if (!reader.IsDBNull(_ordTurPro)) { turno.TurPro= reader.GetInt32(_ordTurPro); }
//
if (!reader.IsDBNull(_ordTurMonto)) { turno.TurMonto = reader.GetDecimal(_ordTurMonto); }
//
if (!reader.IsDBNull(_ordTurOspId)) { turno.TurOspId = reader.GetInt32(_ordTurOspId); }
// IsNew
turno.IsNew = false;
return turno;
}
示例2: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var diaAtencion = new DiaAtencionDto();
//
if (!reader.IsDBNull(_ordDatId)) { diaAtencion.DatId = reader.GetInt32(_ordDatId); }
//
if (!reader.IsDBNull(_ordDatTdaId)) { diaAtencion.DatTdaId = reader.GetInt32(_ordDatTdaId); }
// IsNew
diaAtencion.IsNew = false;
return diaAtencion;
}
示例3: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var testDetalle = new TestDetalleDto();
//
if (!reader.IsDBNull(_ordDetId)) { testDetalle.DetId = reader.GetInt32(_ordDetId); }
//
if (!reader.IsDBNull(_ordDetTstId)) { testDetalle.DetTstId = reader.GetInt32(_ordDetTstId); }
// IsNew
testDetalle.IsNew = false;
return testDetalle;
}
示例4: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var afeccionesTratamientos = new AfeccionesTratamientosDto();
//
if (!reader.IsDBNull(_ordAtsId)) { afeccionesTratamientos.AtsId = reader.GetInt32(_ordAtsId); }
//
if (!reader.IsDBNull(_ordAtsTraId)) { afeccionesTratamientos.AtsTraId = reader.GetInt32(_ordAtsTraId); }
//
if (!reader.IsDBNull(_ordAtsAfnId)) { afeccionesTratamientos.AtsAfnId = reader.GetInt32(_ordAtsAfnId); }
// IsNew
afeccionesTratamientos.IsNew = false;
return afeccionesTratamientos;
}
示例5: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var pacienteOcupaciones = new PacienteOcupacionesDto();
//
if (!reader.IsDBNull(_ordOpaId)) { pacienteOcupaciones.OpaId = reader.GetInt32(_ordOpaId); }
//
if (!reader.IsDBNull(_ordOpaPaeId)) { pacienteOcupaciones.OpaPaeId = reader.GetInt32(_ordOpaPaeId); }
//
if (!reader.IsDBNull(_ordOpaOcuId)) { pacienteOcupaciones.OpaOcuId = reader.GetInt32(_ordOpaOcuId); }
// IsNew
pacienteOcupaciones.IsNew = false;
return pacienteOcupaciones;
}
示例6: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var ocupaciones = new OcupacionesDto();
//
if (!reader.IsDBNull(_ordOcuId)) { ocupaciones.OcuId = reader.GetInt32(_ordOcuId); }
//
if (!reader.IsDBNull(_ordOcuDescripcion)) { ocupaciones.OcuDescripcion = reader.GetString(_ordOcuDescripcion); }
//
if (!reader.IsDBNull(_ordOcuOptId)) { ocupaciones.OcuOptId = reader.GetInt32(_ordOcuOptId); }
// IsNew
ocupaciones.IsNew = false;
return ocupaciones;
}
示例7: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var profesionalEspecialidades = new ProfesionalEspecialidadesDto();
//
if (!reader.IsDBNull(_ordPepId)) { profesionalEspecialidades.PepId = reader.GetInt32(_ordPepId); }
//
if (!reader.IsDBNull(_ordPepProId)) { profesionalEspecialidades.PepProId = reader.GetInt32(_ordPepProId); }
//
if (!reader.IsDBNull(_ordPepEcpId)) { profesionalEspecialidades.PepEpcId = reader.GetInt32(_ordPepEcpId); }
// IsNew
profesionalEspecialidades.IsNew = false;
return profesionalEspecialidades;
}
示例8: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var turno = new TurnoDto();
//
if (!reader.IsDBNull(_ordTrnId)) { turno.TrnId = reader.GetInt32(_ordTrnId); }
//
if (!reader.IsDBNull(_ordTrnFecha)) { turno.TrnFecha = reader.GetString(_ordTrnFecha); }
//
if (!reader.IsDBNull(_ordTrnHora)) { turno.TrnHora = reader.GetString(_ordTrnHora); }
//
if (!reader.IsDBNull(_ordTrnMontoCobrado)) { turno.TrnMontoCobrado = reader.GetInt32(_ordTrnMontoCobrado); }
//
if (!reader.IsDBNull(_ordTrnEstId)) { turno.TrnEstId = reader.GetInt32(_ordTrnEstId); }
//
if (!reader.IsDBNull(_ordTrnProId)) { turno.TrnProId = reader.GetInt32(_ordTrnProId); }
//
if (!reader.IsDBNull(_ordTrnSesId)) { turno.TrnSesId = reader.GetInt32(_ordTrnSesId); }
//
if (!reader.IsDBNull(_ordTrnPaeId)) { turno.TrnPaeId = reader.GetInt32(_ordTrnPaeId); }
//
if (!reader.IsDBNull(_ordTrnDatId)) { turno.TrnDatId = reader.GetInt32(_ordTrnDatId); }
//
if (!reader.IsDBNull(_ordTrnOspId)) { turno.TrnOspId = reader.GetInt32(_ordTrnOspId); }
// IsNew
turno.IsNew = false;
return turno;
}
示例9: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var localidad = new LocalidadDto();
//
if (!reader.IsDBNull(_ordLocId)) { localidad.LocId = reader.GetInt32(_ordLocId); }
//
if (!reader.IsDBNull(_ordLocDescripcion)) { localidad.LocDescripcion = reader.GetString(_ordLocDescripcion); }
//
if (!reader.IsDBNull(_ordLocPvcId)) { localidad.LocPvcId = reader.GetInt32(_ordLocPvcId); }
// IsNew
localidad.IsNew = false;
return localidad;
}
示例10: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var vacaciones = new VacacionesDto();
//
if (!reader.IsDBNull(_ordVacId)) { vacaciones.VacId = reader.GetInt32(_ordVacId); }
//
if (!reader.IsDBNull(_ordVacFechaDesde)) { vacaciones.VacFechaDesde = reader.GetString(_ordVacFechaDesde); }
//
if (!reader.IsDBNull(_ordVacFechaHasta)) { vacaciones.VacFechaHasta = reader.GetString(_ordVacFechaHasta); }
//
if (!reader.IsDBNull(_ordVacProId)) { vacaciones.VacProId = reader.GetInt32(_ordVacProId); }
// IsNew
vacaciones.IsNew = false;
return vacaciones;
}
示例11: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var test = new TestDto();
//
if (!reader.IsDBNull(_ordTstId)) { test.TstId = reader.GetInt32(_ordTstId); }
//
if (!reader.IsDBNull(_ordTstObservacion)) { test.TstObservacion = reader.GetString(_ordTstObservacion); }
//
if (!reader.IsDBNull(_ordTstZcuId)) { test.TstZcuId = reader.GetInt32(_ordTstZcuId); }
//
if (!reader.IsDBNull(_ordTstTptId)) { test.TstTptId = reader.GetInt32(_ordTstTptId); }
// IsNew
test.IsNew = false;
return test;
}
示例12: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var pacienteOs = new PacienteOsDto();
//
if (!reader.IsDBNull(_ordOspId)) { pacienteOs.OspId = reader.GetInt32(_ordOspId); }
//
if (!reader.IsDBNull(_ordOspPaeId)) { pacienteOs.OspPaeId = reader.GetInt32(_ordOspPaeId); }
//
if (!reader.IsDBNull(_ordOspOsoId)) { pacienteOs.OspOsoId = reader.GetInt32(_ordOspOsoId); }
//
if (!reader.IsDBNull(_ordOspNroSocio)) { pacienteOs.OspNroSocio = reader.GetInt64(_ordOspNroSocio); }
// IsNew
pacienteOs.IsNew = false;
return pacienteOs;
}
示例13: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var zonaCuerpo = new ZonaCuerpoDto();
//
if (!reader.IsDBNull(_ordZcuId)) { zonaCuerpo.ZcuId = reader.GetInt32(_ordZcuId); }
//
if (!reader.IsDBNull(_ordZcuDescripcion)) { zonaCuerpo.ZcuDescripcion = reader.GetString(_ordZcuDescripcion); }
//
if (!reader.IsDBNull(_ordZcuNivel)) { zonaCuerpo.ZcuNivel = reader.GetInt32(_ordZcuNivel); }
//
if (!reader.IsDBNull(_ordZcuIdPadre)) { zonaCuerpo.ZcuIdPadre = reader.GetInt32(_ordZcuIdPadre); }
// IsNew
zonaCuerpo.IsNew = false;
return zonaCuerpo;
}
示例14: PopulateDto
internal override DtoBase PopulateDto(OracleDataReader reader)
{
var profesional = new ProfesionalDto();
//
if (!reader.IsDBNull(_ordProId)) { profesional.ProId = reader.GetInt32(_ordProId); }
//
if (!reader.IsDBNull(_ordProMatricula)) { profesional.ProMatricula = reader.GetInt32(_ordProMatricula); }
//
if (!reader.IsDBNull(_ordProTelefonoInterno)) { profesional.ProTelefonoInterno = reader.GetString(_ordProTelefonoInterno); }
//
if (!reader.IsDBNull(_ordProPsnId)) { profesional.ProPsnId = reader.GetInt32(_ordProPsnId); }
// IsNew
profesional.IsNew = false;
return profesional;
}
示例15: SafeReadInt
/// <summary>
/// Safely reads int values from the database if they are null
/// </summary>
/// <param name="odr">oracle datareader</param>
/// <param name="colindex">column index</param>
/// <returns>-1 if null otherwise value from DB</returns>
int SafeReadInt(OracleDataReader odr, int colindex)
{
if (!odr.IsDBNull(colindex))
return odr.GetInt32(colindex);
else
return -1;
}