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...
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...
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?
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 =...
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
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)
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...
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>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.