Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Installation Question

Installation Question

From: Teresita Castro <Teresita.Castro_at_s-martmx.com>
Date: Tue, 22 Jul 2003 10:38:10 -0600
Message-Id: <25988.338913@fatcity.com>


This is a MIME message. If you are reading this text, you may want to consider changing to a mail reader or gateway that understands how to properly handle MIME multipart messages.

--=_B4EA9B96.CAABCF7C
Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable

Hi!!!
I am working with Visual Basic 6.0, Oracle 9.2i, and Crystal Report 8.5

I made some recordset to feed my reports, they are working find, but my = problem now is that I don't know how to made an instalation. I made one with the Packge & deployment wizard, but that installation did = not works, when I install it ask me for the client of Oracle. I have to install the client of Oracle?? I hope someone can help me because I don't have a clue on this.

This is an example of my code

'=3D=3D=3D=3D=3DIn a module
Function Open_cnOracle() As Boolean
Dim vaPieces As Variant
On Error GoTo ErrorConectarOracle:
Set gcnOracle =3D New ADODB.Connection
With gcnOracle

    .ConnectionString =3D "Provider=3DOraOLEDB.Oracle.1;Password=3Dburke00;= Persist Security Info=3DTrue;User ID=3Dlawson1;Data Source=3DLAWP"

    .CommandTimeout =3D 0
   =20
    .Open
    Open_cnOracle =3D True
End With

    Exit Function
ErrorConectarOracle:

    MsgBox ("No se pudo abrir la Base de datos Oracle")     Open_cnOracle =3D False
End Function

'=3D=3D=3D=3D=3D=3DOn a form
Private Sub cmdImprimir_Click()
Dim sF1 As String
Dim sF2 As String
iCia =3D cboCompany.ItemData(cboCompany.ListIndex) giParam1 =3D cboTipoRep.ItemData(cboTipoRep.ListIndex) sF1 =3D Format(dtpFecha1.Value, "mm/dd/yyyy") sF2 =3D Format(dtpFecha2.Value, "mm/dd/yyyy") If dtpFecha1.Value <=3D dtpFecha2.Value Then

    gstrForm =3D "cr_ArbolVtas"
   =20

    gstrParameter1 =3D cboCompany.Text
    gstrParameter2 =3D "Del " & sF1 & " al " & sF2
    gstrParameter3 =3D "REPORTE " + cboTipoRep.Text
    gstrSQL =3D "SELECT OEINVCLINE.ITEM, OEINVCLINE.DESCRIPTION, = OEINVCLINE.QUANTITY, " & _
" Case OEINVCLINE.TAX_CODE WHEN 'IVA 0%' THEN OEINVCLINE.TAXABLE_BS=
E " & _

" WHEN 'IVA 10%' THEN OEINVCLINE.TAXABLE_BSE*1.1 WHEN 'IVA 15%' =
THEN OEINVCLINE.TAXABLE_BSE*1.15 " & _
" Else OEINVCLINE.TAXABLE_BSE END TOT_LINE, OEINVCLINE.SALES_MAJCL, =
MAJORCL.DESCRIPTION AS MAJCL_DES, " & _
" OEINVCLINE.SALES_MINCL, MINORCL.DESCRIPTION AS MINCL_DES " & _
" FROM MAJORCL INNER JOIN OEINVOICE INNER JOIN " & _
" OEINVCLINE ON OEINVOICE.COMPANY =3D OEINVCLINE.COMPANY AND =
OEINVOICE.INVC_PREFIX =3D OEINVCLINE.INVC_PREFIX AND " & _
" OEINVOICE.INVC_NUMBER =3D OEINVCLINE.INVC_NUMBER ON MAJORCL.MAJOR_=
CLASS =3D OEINVCLINE.SALES_MAJCL LEFT OUTER JOIN " & _
" MINORCL ON OEINVCLINE.SALES_MINCL =3D MINORCL.MINOR_CLASS AND =
MAJORCL.ITEM_GROUP =3D MINORCL.ITEM_GROUP AND MAJORCL.CLASS_TYPE =3D = MINORCL.CLASS_TYPE AND " & _
" MAJORCL.MAJOR_CLASS =3D MINORCL.MAJOR_CLASS WHERE OEINVOICE.COMPAN=
Y=3D" & iCia & " AND " & _

" ( INVOICE_DATE BETWEEN to_date('" & sF1 & "','mm/dd/yyyy') AND =
to_date('" & sF2 & "','mm/dd/yyyy')) " & _

" AND ( MAJORCL.CLASS_TYPE =3D 'S') "
    Load frmReport
    frmReport.Show vbModal
Else

    MsgBox "Rango de fechas incorrecto"
End If
End Sub

'=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3DOn the CrViewer = form=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Option Explicit
Dim adoRS As ADODB.Recordset
Dim crRep_ArbolVtas As cr_ArbolVtas

Private Sub Form_Load()
Select Case gstrForm

Case "cr_ArbolVtas"

        ' Reporte de Porcentaje de vtas de Productos nacionales y de = importacion

        Set adoRS =3D New ADODB.Recordset
        adoRS.Open gstrSQL, gcnOracle, adOpenForwardOnly, adLockReadOnly, =
adCmdText
        If adoRS.EOF And adoRS.BOF Then  'No encontro
            adoRS.Close
            Set adoRS =3D Nothing
            Screen.MousePointer =3D vbDefault
            Exit Sub
        Else
            Set crRep_ArbolVtas =3D New cr_ArbolVtas
            crRep_ArbolVtas.ParameterFields(1).AddCurrentValue gstrParamete=
r1   'cia
            crRep_ArbolVtas.ParameterFields(2).AddCurrentValue gstrParamete=
r2  'Rango fechas
            crRep_ArbolVtas.ParameterFields(3).AddCurrentValue gstrParamete=
r3  'Titulo
            If giParam1 =3D 1 Then 'Mostrar solo totales x clase mayor
                crRep_ArbolVtas.Section4.Suppress =3D True
                crRep_ArbolVtas.Section5.Suppress =3D True
            ElseIf giParam1 =3D 2 Then 'Mostrar solo totales x clase mayor =
y menor
                crRep_ArbolVtas.Section5.Suppress =3D True
            End If
            crRep_ArbolVtas.Database.SetDataSource adoRS
            CRViewer1.ReportSource =3D crRep_ArbolVtas
           =20
        End If

--=_B4EA9B96.CAABCF7C
Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"=
>
<META content=3D"MSHTML 6.00.2800.1170" name=3DGENERATOR></HEAD> <BODY style=3D"MARGIN-TOP: 2px; FONT: 8pt Tahoma; MARGIN-LEFT: 2px"><FONT = size=3D1>
<DIV>Hi!!!<BR>I am working with Visual Basic 6.0, Oracle 9.2i, and = Crystal=20
Report 8.5</DIV>
<DIV>&nbsp;</DIV>
<DIV>I made some recordset to feed my reports, they are working find, but = my=20
problem now&nbsp;is that I don't know how to made an instalation.</DIV> <DIV>I made one with the Packge &amp; deployment wizard, but that = installation=20
did not works, when I install it ask me for the client of Oracle.</DIV>
<DIV>I have to install the client of Oracle??</DIV>
<DIV>I hope someone can help me because I don't have a clue on this.</DIV>
<DIV>&nbsp;</DIV>
<DIV>This is an example of my code</DIV>
<DIV>&nbsp;</DIV>
<DIV>'=3D=3D=3D=3D=3DIn a module</DIV>
<DIV>Function Open_cnOracle() As Boolean</DIV>
<DIV>Dim vaPieces As Variant</DIV>
<DIV>On Error GoTo ErrorConectarOracle:<BR>Set gcnOracle =3D New=20
ADODB.Connection<BR>With gcnOracle<BR>&nbsp;&nbsp;&nbsp; .ConnectionString = =3D=20
"Provider=3DOraOLEDB.Oracle.1;Password=3Dburke00;Persist Security = Info=3DTrue;User=20
ID=3Dlawson1;Data Source=3DLAWP"<BR>&nbsp;&nbsp;&nbsp; .CommandTimeout = =3D=20
0<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; .Open<BR>&nbsp;&nbsp;&nbsp;= =20
Open_cnOracle =3D True<BR>End With</DIV> <DIV><BR>&nbsp;&nbsp;&nbsp; Exit=20
Function<BR>ErrorConectarOracle:<BR>&nbsp;&nbsp;&nbsp; MsgBox ("No se pudo = abrir=20
la Base de datos Oracle")<BR>&nbsp;&nbsp;&nbsp; Open_cnOracle =3D = False</DIV>
<DIV>End Function</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>'=3D=3D=3D=3D=3D=3DOn&nbsp;a form</DIV>
<DIV>Private Sub cmdImprimir_Click()<BR>Dim sF1 As String<BR>Dim sF2 As=20
String<BR>iCia =3D cboCompany.ItemData(cboCompany.ListIndex)<BR>giParam1 = =3D=20
cboTipoRep.ItemData(cboTipoRep.ListIndex)<BR>sF1 =3D Format(dtpFecha1.Value= ,=20
"mm/dd/yyyy")<BR>sF2 =3D Format(dtpFecha2.Value, "mm/dd/yyyy")<BR>If=20 dtpFecha1.Value &lt;=3D dtpFecha2.Value Then<BR>&nbsp;&nbsp;&nbsp; = gstrForm =3D=20
"cr_ArbolVtas"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; gstrParameter1 = =3D=20
cboCompany.Text<BR>&nbsp;&nbsp;&nbsp; gstrParameter2 =3D "Del " &amp; sF1 = &amp; "=20
al " &amp; sF2<BR>&nbsp;&nbsp;&nbsp; gstrParameter3 =3D "REPORTE " +=20 cboTipoRep.Text</DIV>
<DIV>&nbsp;&nbsp;&nbsp; gstrSQL =3D "SELECT OEINVCLINE.ITEM,&nbsp;=20 OEINVCLINE.DESCRIPTION, OEINVCLINE.QUANTITY, " &amp;=20 _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " Case OEINVCLINE.TAX_CODE WHEN = 'IVA=20
0%'&nbsp; THEN OEINVCLINE.TAXABLE_BSE " &amp;=20 _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " WHEN 'IVA 10%' THEN=20 OEINVCLINE.TAXABLE_BSE*1.1 WHEN 'IVA 15%' THEN OEINVCLINE.TAXABLE_BSE*1.15 = "=20
&amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " Else OEINVCLINE.TAXABLE_B= SE=20
END TOT_LINE, OEINVCLINE.SALES_MAJCL, MAJORCL.DESCRIPTION AS MAJCL_DES, " = &amp;=20
_<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " OEINVCLINE.SALES_MINCL,=20
MINORCL.DESCRIPTION AS MINCL_DES " &amp;=20
_<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " FROM MAJORCL INNER JOIN =
OEINVOICE=20
INNER JOIN " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " OEINVCLINE = ON=20
OEINVOICE.COMPANY =3D OEINVCLINE.COMPANY AND OEINVOICE.INVC_PREFIX =3D=20 OEINVCLINE.INVC_PREFIX AND " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ; "=20
OEINVOICE.INVC_NUMBER =3D OEINVCLINE.INVC_NUMBER ON MAJORCL.MAJOR_CLASS = =3D=20
OEINVCLINE.SALES_MAJCL LEFT OUTER JOIN " &amp;=20 _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " MINORCL ON OEINVCLINE.SALES_MIN= CL =3D=20
MINORCL.MINOR_CLASS AND MAJORCL.ITEM_GROUP =3D MINORCL.ITEM_GROUP AND=20 MAJORCL.CLASS_TYPE =3D MINORCL.CLASS_TYPE AND " &amp;=20 _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " MAJORCL.MAJOR_CLASS =3D=20 MINORCL.MAJOR_CLASS WHERE OEINVOICE.COMPANY=3D" &amp; iCia &amp; " = AND&nbsp; "=20
&amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " ( INVOICE_DATE BETWEEN=20=

to_date('" &amp; sF1 &amp; "','mm/dd/yyyy') AND to_date('" &amp; sF2 = &amp;=20
"','mm/dd/yyyy')) " &amp; _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " AND = (=20
MAJORCL.CLASS_TYPE =3D 'S') "<BR>&nbsp;&nbsp;&nbsp; Load=20 frmReport<BR>&nbsp;&nbsp;&nbsp; frmReport.Show=20 vbModal<BR>Else<BR>&nbsp;&nbsp;&nbsp; MsgBox "Rango de fechas incorrecto"<B= R>End=20
If<BR>End Sub</DIV>
<DIV>&nbsp;</DIV>
<DIV>'=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3DOn the CrViewer = form=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D</DIV>

<DIV>Option Explicit<BR>Dim adoRS As ADODB.Recordset</DIV>
<DIV>Dim crRep_ArbolVtas As cr_ArbolVtas</DIV>
<DIV>&nbsp;</DIV>
<DIV>Private Sub Form_Load()<BR>Select Case gstrForm<BR></DIV>
<DIV>Case "cr_ArbolVtas"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' =
Reporte=20
de Porcentaje de vtas de Productos nacionales y de=20 importacion<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set adoRS =3D = New=20
ADODB.Recordset<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; adoRS.Open=20=

gstrSQL, gcnOracle, adOpenForwardOnly, adLockReadOnly,=20 adCmdText<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If adoRS.EOF = And=20
adoRS.BOF Then&nbsp; 'No=20
encontro<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb= sp;=20
adoRS.Close<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;=20
Set adoRS =3D=20
Nothing<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;=20
Screen.MousePointer =3D=20
vbDefault<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n= bsp;=20
Exit Sub<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20 Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = Set=20
crRep_ArbolVtas =3D New=20
cr_ArbolVtas<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;=20
crRep_ArbolVtas.ParameterFields(1).AddCurrentValue gstrParameter1&nbsp;&nbs= p;=20
'cia<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= =20
crRep_ArbolVtas.ParameterFields(2).AddCurrentValue gstrParameter2&nbsp; = 'Rango=20
fechas<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;=20
crRep_ArbolVtas.ParameterFields(3).AddCurrentValue gstrParameter3&nbsp;=20 'Titulo<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p; If=20
giParam1 =3D 1 Then 'Mostrar solo totales x clase=20 mayor<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;=20
crRep_ArbolVtas.Section4.Suppress =3D=20 True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&= nbsp;&nbsp;&nbsp;&nbsp;=20
crRep_ArbolVtas.Section5.Suppress =3D=20 True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= =20
ElseIf giParam1 =3D 2 Then 'Mostrar solo totales x clase mayor y=20 menor<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &nbsp;&nbsp;&nbsp;&nbsp;=20
crRep_ArbolVtas.Section5.Suppress =3D=20 True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = End=20
If<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20=

crRep_ArbolVtas.Database.SetDataSource=20 adoRS<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= Received on Tue Jul 22 2003 - 11:38:10 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US