Hello.
I study little by little programming under the android. There is one question. How to create a database, already understood, to create a table - in principle, too. Here is the script:
public static final String SQL_CREATE_QUERY = "CREATE TABLE "+ TABLE_NAME + " (" + UID + "INTEGER PRIMARY KEY AUTOINCREMENT," + NAME + "varchar(255))"; But just to write it without errors, I almost ruined the laptop. Too many quotes, plus signs.
Is there any other way to create tables, maybe an automated service, or will you have to suffer with this syntax?