Results 1 to 3 of 3

Thread: Using Single Apostrophe while inserting data

  1. #1
    Faisal Saleem Guest

    Using Single Apostrophe while inserting data

    Dear fellows,

    I want to insert the data in a field which contains apostrophe['] in it, but the insert command does not stores the test after apostrophe

    e.g
    Insert into test_tbl(id,name)
    values (32,'This is a test of apostrophe's ...'

    the above command does not store after first apostrophe.

    Please suggest
    -Faisal

  2. #2
    Judith Farber Abraham Guest

    Using Single Apostrophe while inserting data (reply)

    Try doubling every apostrophe you want to have in your data


    ------------
    Faisal Saleem at 3/16/99 7:28:18 AM

    Dear fellows,

    I want to insert the data in a field which contains apostrophe['] in it, but the insert command does not stores the test after apostrophe

    e.g
    Insert into test_tbl(id,name)
    values (32,'This is a test of apostrophe's ...'

    the above command does not store after first apostrophe.

    Please suggest
    -Faisal

  3. #3
    Gregory Guest

    Using Single Apostrophe while inserting data (reply)

    or:
    Insert into test_tbl(id,name)
    values (32,"This is a test of apostrophe's ..."
    ....?


    ------------
    Judith Farber Abraham at 3/16/99 7:32:16 AM

    Try doubling every apostrophe you want to have in your data


    ------------
    Faisal Saleem at 3/16/99 7:28:18 AM

    Dear fellows,

    I want to insert the data in a field which contains apostrophe['] in it, but the insert command does not stores the test after apostrophe

    e.g
    Insert into test_tbl(id,name)
    values (32,'This is a test of apostrophe's ...'

    the above command does not store after first apostrophe.

    Please suggest
    -Faisal

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •