Category: Science & Technology
-
updating xml stored in oracle tables
REM ********************************************************************** REM Set Environment parameters REM ********************************************************************** SET scan off; set serveroutput on size 100000; select ‘START TIME: ‘||to_char(sysdate,’mm/dd/yyyy hh24:mi:ss’) from dual; DECLARE xml_text1 clob; xml_text2 clob; xml_text3 clob; xml_text4 clob; xml_column_name VARCHAR2(50) := ‘demo.xml’; sql_stmt1 VARCHAR2(2000); sql_stmt2 VARCHAR2(2000); sql_stmt3 VARCHAR2(2000); sql_stmt4 VARCHAR2(2000); BEGIN xml_text1 :=’ –….. put your xml data here… ‘; xml_text2… Read.
-
Universe as I see
Please note: this is a monologue on thoughtful evening and has no scientific basis. This might be true or false. Plasma universe is primordial whereas big-bang universe is it’s re-incarnation. I might be wrong but I’ll try to answer this question. I cannot say what was present in the beginning but Plasma Universe is more… Read.
-
how to handle _root with mutliple swf
I was working to create a flash-based football game application. Inside the game, a football player moves in various direction when I press the arrow keys. However, it was not working fine after I dd some changes. The code of football player goes like this. function step(who) { //check to see if the football player… Read.
-
Writing your first JDBC Application?
Ok, after a long time, here is core technical blog for all of u. If u r wondering how to access MySQL database using JAVA program. The answer is JDBC application! Before going to coding, u must understand certain aspects of JDBC programming. 1. You must include Jconnector in the classpath of ur machine so… Read.
