User Profile

Collapse

Profile Sidebar

Collapse
jith87
jith87
Last Activity: Sep 3 '10, 06:37 AM
Joined: Jul 24 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jith87
    started a topic Fast CGI Error
    in PHP

    Fast CGI Error

    Hi,

    I am getting the following error when i try to execute a php page. Actually I have 2 php pages A and B and when u click submit in A it should route u to B.When i click submit in A,i get an error whose details are as follows:

    Can any one say what this error means?


    FastCGI Error
    The FastCGI Handler was unable to process the request.

    Error Details:

    * The...
    See more | Go to post

  • jith87
    started a topic How to call stored procedures?
    in PHP

    How to call stored procedures?

    Hi,

    Can any one guide me on how to call a stored procedure in MS SQL Server using PHP?

    Thanks in advance.



    Regards,
    Jith.
    See more | Go to post

  • jith87
    started a topic Send Bulk sms from a website
    in PHP

    Send Bulk sms from a website

    hi,
    I am developing a website in PHP. i need to send bulk sms through this site. i am a newbie to PHP. can anybody help me out?
    See more | Go to post

  • jith87
    started a topic TNS Protocol Adapter Error

    TNS Protocol Adapter Error

    hi,
    i am using some ASP files to retrieve data from an oracle database.all this time i was developing my files in an Oracle server machine. now i switched over to Oracle Client machine. here all my ASP pages give "ORA-12560 TNS ProtocolAdapter Error".
    can anybody give me a solution. i am definitely sure that this is not an ASP question because my files work properly in Oracle Server machine. pl help me out.
    thanks...
    See more | Go to post

  • jith87
    started a topic Handling Exception inside MuSQL Stored Procedure

    Handling Exception inside MuSQL Stored Procedure

    hi,
    i need to handle a "NOT FOUND"exception inside Stored Procedure in MySQL. i get an error in the syntax.here is my code...
    Code:
    DROP PROCEDURE IF EXISTS insert1//
    create procedure insert1(user_id varchar(20),
    organization varchar(60),
    proj_from date,
    proj_to date,
    proj_title varchar(80),
    language varchar(30),
    tool1 varchar(60),
    platform varchar(30),
    os
    ...
    See more | Go to post

  • jith87
    started a topic Running an ASP file outside the root directiry

    Running an ASP file outside the root directiry

    hi ,
    is there anyway to run ASP files placed outside the root directory?? say inside 'D:'?????
    thanks in advance,
    jith
    See more | Go to post

  • jith87
    replied to Displaying db retrieved values in JSP
    in Java
    This is jus a prototype i m creating so that i get well versed in this concept....In the actual program its going to be multiple statements....
    See more | Go to post

    Leave a comment:


  • jith87
    started a topic Displaying db retrieved values in JSP
    in Java

    Displaying db retrieved values in JSP

    I m using MySql as back end n JSP as front end and the connectivity using JDBC. I ve to display a record retrieved from the db in the JSP page.
    Code:
    public void view_per_profile()
    {
    Connection con = null;ResultSet rs = null;
    CallableStatement cstmtm = null;
    try
    {
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    System.out.println("Good to go");
    con = DriverManager.getConnection("jdbc:mysql://localhost/test1","root",
    ...
    See more | Go to post

  • jith87
    started a topic Create connection pools in JDBC
    in Java

    Create connection pools in JDBC

    Can u tell me how to create connection pools in JDBC ????
    Ths type of creating is said to have reduced the processing time spent during connecting and disconnecting to the databases.

    Pls help me........

    Thanx n regards........ ....
    See more | Go to post

  • jith87
    replied to How to get the no. of columns?
    thanx ere............ ..... it worked out for me......
    See more | Go to post

    Leave a comment:


  • jith87
    started a topic How to get the no. of columns?

    How to get the no. of columns?

    Is there any way to get the number of columns in a MySql table???
    See more | Go to post

  • jith87
    replied to Displaying db retrieved values in JSP
    in Java
    I ve stored the values in seperate variables. How to re direct them to the JSP page.??? Also what do u mean by Object here???...
    See more | Go to post

    Leave a comment:


  • jith87
    started a topic Displaying db retrieved values in JSP
    in Java

    Displaying db retrieved values in JSP

    Hi,

    I ve retrieved values from MySql db. From the result set i ve used the getXXX() to get the values in seperate variables. Earlier i used getParameter() to get the values from JSP page to be stored in db.

    Now i need to display the retrieved data in their corresponding controls such as textbox etc.. back in the JSP page....Can u help me out????


    Thanx in advance........
    See more | Go to post

  • jith87
    started a topic Truncate table inside trigger(Urgent help needed)

    Truncate table inside trigger(Urgent help needed)

    hi,
    how do you truncate a table inside a trigger(plsql) if the table size is more than 1000 records???
    regards,
    jith
    See more | Go to post

  • jith87
    started a topic Line size in MySql

    Line size in MySql

    How do u set the line size in MySql????? i.e equivalent to

    [code=oracle]
    set linesize 400;
    [/code]
    in Oracle........
    See more | Go to post
    Last edited by Atli; Oct 3 '07, 02:41 PM. Reason: Changed <code> to [code].

  • jith87
    started a topic How to convert Blob?
    in Java

    How to convert Blob?

    I m using JSP @ front end and MySql db @ back end and the connectivity thru JDBC. While retrieving a blob(MySql format) from the db back to JSP i need to convert ths to blob(Java comaptible format)..

    For ths i ve used getBlob() specified in the ResultSet API docs. Bt when i run i get an error as

    com.mysql.jdbc. Blob@152c4d9

    The above gets printed for all the blobs with a diff in the no present @ the end.......
    See more | Go to post

  • jith87
    replied to Conversion of data type from MySql to JSP
    in Java
    date_rs_test.ja va:36: cannot find symbol
    symbol : variable Calendar

    ths s the error dat i got.......
    See more | Go to post

    Leave a comment:


  • jith87
    replied to Conversion of data type from MySql to JSP
    in Java
    Yes bt i wanna convert the sql format date to java compatible date format. Wht to do for that?...
    See more | Go to post

    Leave a comment:


  • jith87
    replied to Conversion of data type from MySql to JSP
    in Java
    while getting date from db and sending it to jsp...
    See more | Go to post

    Leave a comment:


  • jith87
    started a topic Conversion of data type from MySql to JSP
    in Java

    Conversion of data type from MySql to JSP

    My proj involves JSP @ front end n MySql @ back end and connectivity is established thru JDBC. The thing is when i store values from the front end into the db i need to change the data types n vice versa.Consider ths.

    I m retrieving date from the db thru the result set i m traversing thru each n every record(next() function is used).

    String d1 = rs.getString(2) ;System.out.pri ntln("Date="+da te);

    ...
    See more | Go to post
No activity results to display
Show More
Working...