Hello,
I have been creating a SQL table using the following code:
(need to remove the space between C and R in Create above, the forum wouldn't let me submit the query for some reason)
However I want to know what would be the quick and easy way to create a table where the name go up to 300.
Do I need to keep entering in the name in my query up to 300 or is there a faster way such as using some type of loop?
Also, what is the max number of columns can I create per table ?
I have been creating a SQL table using the following code:
B4X:
SQL1.ExecNonQuery("C REATE TABLE names (id TEXT, name1 TEXT, name2 TEXT, name3 TEXT)")
However I want to know what would be the quick and easy way to create a table where the name go up to 300.
Do I need to keep entering in the name in my query up to 300 or is there a faster way such as using some type of loop?
Also, what is the max number of columns can I create per table ?