Hi everybody!,
Im working with SQLite and i found this problem:
exitScene Nombre_General
Runtime error
error loading module ‘Data_Base’ from file 'c:\users\qfrhern\document
s\pfg\dropbox\proyecto\on going\Data_Base.lua’:
…qfrhern\documents\pfg\dropbox\proyecto\on going\Data_Base.
lua:1178: function at line 28
When I exit from one Scene to enter other (Data_Base) for create and insert data in my sqlite Data Base, I have the error in the same line, always, line 1178.
This Scene I use for create data bases, insert data (only SQLite)
I show you the “problematic” line in my code:
…
1175: local tableexperiencianew = [[INSERT INTO experiencia VALUES (NULL, 1884850);]]
1176: db:exec ( tableexperiencianew )
1177:
1178: local tableexperiencianew = [[INSERT INTO exp VALUES (NULL, 1939850);]]
1179: db:exec ( tableexperiencianew )
1180:
…
I have more lines to inserting data without fails.
What’s the problem?
Is limited the numer of lines to insert data in the data base?
I hope you can help me
Thanks in advance