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

    Database and XML

    I have one table with 10 fields and 100 records in Oracle 9i. I want to put the information in XML to be fetched later on another network into another Oracle 9i database. Please advise if this is possible where I will get the 100 records with the 10 fields and transfer it over into XML? I...
  2. kensington45

    Ora-00020 error

    We are getting ora-00020 message (ORA-00020: maximum number of processes (%s) exceeded) when trying to connect to our Oracle 9i database. I googled the error message and it says to find what user is causing the problem. I used v$session but didnt find any user keeping the connection open...
  3. kensington45

    httpObject interpretations

    I am trying to understand the below object: var http = getHTTPObject(); // Create the XMLHTTPRequest Object http.readyState = readyState represents what? http.status = status of readyState? http.onreadystatechange = is response status? http.send(null); this method passes null argument to what?
  4. kensington45

    Mapping data

    I have something that works with data mapping but was wondering if there was a more efficient way to do this? Java part: .... //database part here...ResultSet rs ... List myMap = new ArrayList(); while (rs.next()) { String firstname = rs.getString("firstname"); String lastname =...
  5. kensington45

    Translate attempt

    Thanks!
  6. kensington45

    Translate attempt

    Thanks, The return from this ($inf = mysql_fetch_array($res) looks like this: $inf["firstname"] $inf["lastname"] $inf["address"] I assume this translates to? 0 = firstname 1 = lastname 3 = address
  7. kensington45

    Translate attempt

    I really am lost on some of the PHP terminology.. What is isset...google says its a session variable?? if(isset($_GET['getClientId'])){ mysql_fetch_array is fetching parameters that are taken from array?? if($inf = mysql_fetch_array($res)
  8. kensington45

    Translate attempt

    I have something working great in PHP but now I need to move something over to a server without PHP and am trying to translate the PHP script into Java. PHP: if(isset($_GET['getClientId'])){ $res = mysql_query("select * from tableOne where clientID='".$_GET['getClientId']."'") or...
  9. kensington45

    Seperate and get values

    I have form.mydata coming to my action page with comma delimeters: adam,joe,ben,steve,jill,andy,david I want to seperate them and it works inside this loop: <cfset myd = ""> <cfloop list="form.mydata" index="i" delimiters=","> <cfoutput> <cfset myd = "#i#"> #myd#<br /> </cfoutput>...

Part and Inventory Search

Back
Top