I'm able to connect to the database with other tools (nothing available from the sun box). And my unix admin says the port is open and available for use.
I'm trying to do an import from an ODBC source. Instead of retreiving the list of tables it returns the error "Can't connection to local MySQL". From all of the documentation that I've found - if the port is defined the sockets setting is ignored. Any suggestions where to go from here...
I've built a function to return the position of a given character within a string. I need to pass a carriage return or line feed character into this function from within another procedure. If I was calling the procedure from VB or other programming lanuages I'd pass in chr(13) or chr(10). How...
I've added this after setting the width and height:
window.status = "width = " + document.body.clientWidth + " height = " + document.body.clientHeight;
The status bar displays the changes as the window is resized, but the applet doesn't change.
Any other suggestions?
The following code works just fine in IE6, but in Safari it's ignored. Is there a way to resize an applet after it's loaded in Safari?
Thanks in advance.
<html>
<head>
<title>Viewer</title>
</head>
<script language="JavaScript">
function resizeGrid()
{ /* Make the applet fit the...
The <th> tag will center the data <td> will align right. As the width of the table changes (if it is not a fixed width) so to will the spacing within the <th> tag - keeping the data centered. One solution would be to fix the table width, another would be to fix the width of the <th> tag and a...
Correction
SELECT a1.eid, a1.time as start, a2.time as end
FROM APPLOG a1, APPLOG a2
WHERE a1.eid = a2.eid
AND a1.event = 'start'
AND a2.event = 'end'
ORDER BY time
If your interested a self join on this table would like like:
SELECT a1.eid, a1.time as start, a2.time as end
FROM APPLOG a1, APPLOG a2
WHERE a1.eid = a2.eid
ORDER BY time
Define javascript functions on your index page to load your results to the desired frame or frames. Then from the search (or Add/Update) frame call the functions on the index page via javascript "parent.myfunction();".
line 4: datasource="#peregrine#"
other queries: datasource="peregrine"
Is the first reference (line 4) to a variable "peregrine"?
Format I've found useful for working with frames.
<script language="JavaScript">
function selectpage(id)
{ if(id=="userid1")
{ LoadFrame("default_page1.htm", "frame1");
}
else
{ LoadFrame("default_page2.htm"...
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.