Hi, I am vee and I am trying to create a Natural Language search engine based on LSI. I am stuck up and I would be really glad if I could use some help.
I have a two-dimensional array which is full of numbers. I want to transfer the contents of the array in an SQL database.
Example - >
Array(A[2][3]) = 3 4 6
7 8 2
So, My SQL table should have :
c1 c2 c3
r1 3 4 6
r2 7 8 2
Please let me know if you have any further questions. Thank you.
So I was thinking of using 2 for loops to create two SQL columns, but I am not sure whether I will be able to. And moreover, SQL statements are written in double quotes, So, I am not sure whether they will read i and j (2D looping variables).