Search:

Type: Posts; User: Japesh

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    10,038

    Re: Convert datetime to small date in C#

    You can Format time and date by using following code


    using System;

    class MainClass {
    public static void Main() {
    DateTime dt = DateTime.Now;

    Console.WriteLine("Time...
  2. Replies
    3
    Views
    1,724

    PHP fsockopen Functions

    fsockopen — Open Internet or Unix domain socket connection


    PHP supports targets in the Internet and Unix domains as described in List of Supported Socket Transports. A list of supported...
  3. Replies
    2
    Views
    991

    Re: Code Conventions for JAVA Coding

    Class/interface implementation comment (/*...*/), if necessary - This comment should contain any class-wide or interface-wide information that wasn't appropriate for the class/interface...
  4. Replies
    3
    Views
    2,792

    Re: How to alter Table in Oracal

    DROP COLUMN Example :

    This statement illustrates the drop_column_clause with CASCADE CONSTRAINTS. Assume table T1 is created as follows:


    CREATE TABLE t1 (

    pk NUMBER PRIMARY KEY,

    ...
  5. Replies
    3
    Views
    2,792

    Re: How to alter Table in Oracal

    DISABLE Example :

    Consider a referential integrity constraint involving a foreign key on the combination of the AREACO and PHONENO columns of the PHONE_CALLS table. The foreign key references a...
  6. Replies
    3
    Views
    2,792

    Re: How to alter Table in Oracal

    The following statement places in ENABLE VALIDATE state an integrity constraint named FK_DEPTNO in the EMP table:


    ALTER TABLE emp

    ENABLE VALIDATE CONSTRAINT fk_deptno

    EXCEPTIONS INTO...
  7. Replies
    3
    Views
    2,792

    How to alter Table in Oracal

    ALTER TABLE helps in programmatically modifies the structure of a table.
    It has the following syntax :


    ALTER TABLE TableName1 ADD | ALTER [COLUMN] FieldName1 FieldType

    [(nFieldWidth [,...
  8. Replies
    3
    Views
    1,341

    Re: Which is easy to learn ASP Or PHP ?

    PHP's is excellent does not mean ASP's is bad, just that I like PHP's. PHP. Its a lot easy to learn if you have a little C background.
  9. Re: Reliance Netconnect Broadband usb modem will be available on 22 March

    I also received mail form reliance. Here is mail.



    Thank you for booking Reliance Netconnect Broadband+ - India’s fastest internet. We have received an overwhelming response to this launch...
  10. Replies
    4
    Views
    1,867

    Re: Airtel GPRS is too slow

    your getting 15 + Kbps download speed on airtel. :ohmy:

    Where are you from ?
  11. Replies
    2
    Views
    1,030

    Re: Information about MySQL UPDATE Query

    Updating Data from Command Prompt:

    This will use SQL UPDATE command with WHERE clause to update selected data into MySQL table.
  12. Replies
    2
    Views
    3,190

    Re: Difference between MYSQL and MS SQL

    Main differences between commonly used SQL in Microsoft SQL Query

    Current Date and timing
    MS SQL : SELECT GETDATE()
    MY SQL : SELECT NOW()
    Optionally: Use CURDATE() for the date only.

    Trim...
  13. Replies
    2
    Views
    1,342

    Re: Problem with Airtel broadband

    I am using MTNL Triband connection still i am not having any problem. rates are high compare to other ISP but good surfing and browsing speed.
  14. Overloading Assignment Operator and Copy constructor in C#

    The operator = () function in our program returns a value by creating a temporary rect object and initialising it using the two arguments constructor. The value returned is a copy of the object of...
  15. Replies
    4
    Views
    1,867

    Airtel GPRS is too slow

    Hello friends

    I am using Airtel Mobile office it's working too slow. its give me 2kbps speed and max is 15 Kbps speed. Is any one also getting same speed from airtel ?
  16. Thread: Want C# books ?

    by Japesh
    Replies
    2
    Views
    1,596

    Re: Want C# books ?

    eXtreme Programming (XP) in action at the hands of an XP master—and learn Microsoft .NET and C# programming in the process! In this fast-paced, hands-on exposition, Ron Jeffries—one of the...
  17. Replies
    1
    Views
    1,291

    Re: Download Mobile Screen Size.jar multiscreen

    Thanks ADEN this is nice software.
  18. Re: Difference between capacity and size functions of string class

    'dd' isn't a character constant.

    Capacity is the size of the string's buffer, size is the number of characters in the buffer.

    15 does appear to be incorrect.
  19. Replies
    4
    Views
    804

    Re: STL container question

    And you really think that doing two pointer exchanges is faster than one integer exchange?

    However, it can still be slower, since it's more or less the worst thing you
    can do to the cache.
  20. How to Convert uppercase characters into lowercase characters in C++

    Hello friends

    I just started learning C++ i want to know How to Convert UPPERCASE CHARACTERS Into lowercase characters in C++ ?

    Can anyone help me


    Thanks
Results 1 to 20 of 20
Page generated in 1,713,295,014.01885 seconds with 13 queries