tags:

views:

26

answers:

1

is it possible to insert data into mysql in a hidden format??

I did not want to insert in encrpted format??

becoz encryption and decription takes much time..

So i want to insert data into tables which is not seen by others...

But Data should be raed via query....

+3  A: 

There's no such thing as "hidden tables". You should go with encryption. The performance impact can be ignored considering the security improvement you get.

Thorsten Dittmar