Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by meenakshidhar

  1. meenakshidhar

    ASP.Net with Oracle

    this is the code-- Dim con As New System.Data.OracleClient.OracleConnection() con.ConnectionString = "Password=tiger;User ID=scott;Data Source=INDV;" con.Open() and the error is-- OCIEnvNlsCreate failed with return code -1 but error message text was not available.
  2. meenakshidhar

    ASP.Net with Oracle

    ya i tried System.Data.OracleClient also..but still not able to connect..
  3. meenakshidhar

    ASP.Net with Oracle

    i m still getting this error... System.Data.OleDb.OleDbException: Class not registered
  4. meenakshidhar

    ASP.Net with Oracle

    Well, if i m connecting ASP.Net with SQL Server its wrking perfectly alright..I have oracle client installed on my machine.. how do we run "aspnet_regiis -i" from the framework folder. Could u pls explain it little further..
  5. meenakshidhar

    ASP.Net with Oracle

    I m not able to connect ASP.Net with Oracle. The code is given below- ========================================================= Dim oOracleConn As OleDbConnection = New OleDbConnection() oOracleConn.ConnectionString = "Provider=OraOLEDB.Oracle;Data Source=INDV;User ID=scott;Password=tiger"...
  6. meenakshidhar

    Oracle connectivity with ASP.Net

    Hi All, I want to connect ASP.Net with Oracle 8...i have installed Microsoft .Net Oracle Cleint.. i got this code from the Net =========================================================== Imports System.Data.OracleClient Dim oOracleConn As OracleConnection = New OracleConnection()...
  7. meenakshidhar

    Calling Oracle Procedure from ASP

    well, i tried this code but not able to retrieve the records in recordset... =========================================================== Dim objConnection Dim objCommand Dim objRecordset Set objConnection = Server.CreateObject("ADODB.Connection") With objConnection...
  8. meenakshidhar

    Calling Oracle Procedure from ASP

    hi again... My stored procedure is given below... ========================================================== CREATE OR REPLACE procedure proc_meenu1(v_empno emp.empno%TYPE) IS CURSOR c1(v_empno emp.empno%TYPE) IS SELECT * FROM EMP WHERE empno = v_empno; BEGIN FOR I IN C1(v_empno)...
  9. meenakshidhar

    Calling Oracle Procedure from ASP

    Hi All, I want to call oracle procedure from my ASP page in which i m passing the value of empno and want to display empname,job etc..from the table...my code is given below... ========================================================= Dim strSearchName Dim objConnection Dim objCommand Dim...
  10. meenakshidhar

    How to use 2 different stored procedures in Data Reapeater

    I m not able to create a view for sp2. my table structure(GTD_M_RESOURCE_CONTACT)for sp2 is-- Resource_id Contact_Type Last_Digits --------------------------------------------- 193 O 291 193 F 56122778 193 C...
  11. meenakshidhar

    How to use 2 different stored procedures in Data Reapeater

    Stored Procedure 1-- CREATE Procedure sp1 AS BEGIN SELECT * FROM Table1 WHERE COMPANY_ID=52 AND CONTACT_TYPE='O' AND RESOURCE_TYPE_ID=1 AND RESOURCE_ROLE='P' END GO ========================================================= Stored Procedure 2-- CREATE Procedure sp2 AS BEGIN SELECT...
  12. meenakshidhar

    How to use 2 different stored procedures in Data Reapeater

    Hi All, I have one Reapeter in my page. I have to use two seperate stored procedures in order to fetch the data from database and then bind it to the data repeater. My code is given below-- <asp:Repeater id="Repeater1" runat="server"> <HeaderTemplate> <table border="1"> <tr...
  13. meenakshidhar

    How to add Custom Controls

    Hi cappmgr, well well finally i got the solution...the procedure for vb.net & C# is same but make sure there isn't a "root namespace" specified for your control in the project properties, this is a "feature" of VB.net. This was the only problem.. Thanks for your help. Regards, Meenakshi Dhar
  14. meenakshidhar

    How to add Custom Controls

    Hi cappmgr, i think the problem is with vb dll...if i follow the same procedure in C#..then it's working perfectly alright... In Case of C#-- Namespace=ABC Project Name=ABC Class Name= WebCustomControl1 In my code behind file its showing-- Protected WithEvents md1 As ABC.WebCustomControl1...
  15. meenakshidhar

    How to add Custom Controls

    thanks Marty...i think there is some problem in naming conventions...Could you please correct this--- My Namespace= MControl My Control Class Name=MClass My Dll= MControl In my code behind file its showing-- Protected MyCtrl As MControl.MControl.MClass (why ??) and in my aspx page i m using...

Part and Inventory Search

Back
Top