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 gkittelson 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: mjh66
  • Order by date
  1. mjh66

    Meta Tag Refresh Isn't Working

    Hello mtorbin! Did you have any luck solving this issue as I have the same problem - URL will not open in the browser window using refresh. Any help much appreciated. Thanks
  2. mjh66

    Cannot get return value from Stored Procedure

    I've cracked it. Code below .... OracleParameter p_data = new OracleParameter("P_DATA",OracleDbType.Clob); p_data.Direction = ParameterDirection.Input; p_data.Value = xmldata; myCmd.Parameters.Add(p_data); OracleParameter p_error_msg = new...
  3. mjh66

    Cannot get return value from Stored Procedure

    Yeh - the connection is open. The 'connection' at the top is the return connection object from another routine. If it's not null, i.e. a connection has been made then this code runs.
  4. mjh66

    Cannot get return value from Stored Procedure

    I have an Oracle databases that has a stored procedure which accepts a string. This return is just a simple message of varchar2 type. Can someone please tell me what I am doing wrong in the C# code below? - it fails on the ExecuteNonQuery() Thanks in advance. if (connection != null) {...
  5. mjh66

    Searching remote file system

    Thanks Mike - I will have a look. Regards, Matthew.
  6. mjh66

    Searching remote file system

    I have written a Perl script that is called from a browser and is given a UNC or Physical pathname plus a filename without the extension as an argument, e.g. \\server\share\dir\file The script then searches this remote directory path and finds (or not) the first file it comes to with the same...

Part and Inventory Search

Back
Top