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,.

On Fri, Feb 20, 2009 at 10:03 PM, Vetrivel V.
[email protected] 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 .

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