Array

In array I have content like this

         a = ["c" , "d", "e" , "f" ]
But I need like this

          'c','d','e','f'

I want this for my following purpose
      insert into tablename values a .

a has to subtitude in below statement,.

···

--
Posted via http://www.ruby-forum.com/.

While the ruby to do that is trivial, i feel its more important that i
point out you should _never_ construct a SQL statement like this -
it's a classic security hole.

SQL injection - Wikipedia or just google sql injection.

Whatever tool you're using to interface with your database, it will
certainly have a safe way to pass parameters into a sql statement.
Please look that up - it will make the world safer and bypass your
original problem to boot :slight_smile:

Cheers,
lasitha

···

On Fri, Feb 20, 2009 at 10:03 PM, Vetrivel Vetrivel <vetrivel.bksys@gmail.com> wrote:

In array I have content like this

        a = ["c" , "d", "e" , "f" ]
But I need like this

         'c','d','e','f'

I want this for my following purpose
     insert into tablename values a .