Reputation: 5750
Is it possible to create a table name with escape sequences ? like TableName:exampl's
I have EditText and it's entry like that and want to create a table for it ,and there is no restriction for the edittext.
Upvotes: 2
Views: 214
Reputation: 4210
Yes, it is possible. Or at least sqlite3 itself does not forbid this.
The following example would create the table tbl'1
create table "tbl'1"(one varchar(10), two smallint);
But.
There are several reasons why you should not do that:
Upvotes: 1