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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MR1
  • Order by date
  1. MR1

    Programmatically load CSV file into oracle table using VB.Net

    I am using Vb.Net 2008 that is very well integrated with Oracle. You can easily define Oracle data access components. here is a code sample: Dim cmd As OracleCommand Dim ORConn As OracleConnection ORConn = New OracleConnection("Data Source=" & sDataSource & ";User Id=" & vsDatabaseName &...
  2. MR1

    Programmatically load CSV file into oracle table using VB.Net

    Yes prh47, I created an Oracle stored procedure that uses external tables and I call it from my VB.Net application. Regards, M.R.
  3. MR1

    Programmatically load CSV file into oracle table using VB.Net

    Thank you for your time and effort jdemmi, the link you provided is very useful! Regards, M.R.
  4. MR1

    Programmatically load CSV file into oracle table using VB.Net

    Most of these questions are irrelevant. I just need to find a piece of code that reads the contents of a CSV file and writes this data into an Oracle table. If you are familiar to SQL Server, there are VB.NET techniques like 'bulk insert ' or using a 'Microsoft.Jet.OLEDB.4.0' connection that...
  5. MR1

    Programmatically load CSV file into oracle table using VB.Net

    I am trying to find a VB.Net code sample that loads a CSV file into an Oracle table. Thank you, M.R.
  6. MR1

    Error calling VBScript function in external module (ASP.NET)

    Thank you jbenson001, i wasn't aware of this issue. I may use client-side programming then. Do you know by any chance where I can find vbscript (or javascript) code that exports a report to Excel? I have a Microsoft reportviewer control on may page and a .rdlc report. There is an Export...
  7. MR1

    Error calling VBScript function in external module (ASP.NET)

    Thank you jbenson001, I added an AJAX UpdatePanel and this solved my problem!
  8. MR1

    Error calling VBScript function in external module (ASP.NET)

    Thank you for your reply Mark. I am new to ASP.NET I addded runat="server" as follows: <input id="btnExport" type="button" value="Export Report" runat="server" /></p> and the function in vb module is: Protected Sub btnExport_Click(ByVal sender As Object, ByVal e As...
  9. MR1

    Error calling VBScript function in external module (ASP.NET)

    Hello, I have an ASP.NET page with an Input button that calls a function: <input id="btnExport" type="button" value="Export Report" onclick="vbs: ExportReport()" /> And this is the function: <script language="vbscript" type="text/vbscript"> Function ExportReport() Msgbox “Ok” End...

Part and Inventory Search

Back
Top