Good evening, I have a table named PRODUCTS created in sqllite, how do I export the data from this table to a .txt file and then download this .txt file to a server via usb cable.
The table has the fields:
CODBARRA PRIMARY KEY
QTDE
(S.ExecNonQuery2 ("INSERT INTO PRODUCTS (rowid, CODBARRAS, QUANTITY) VALUES (NULL,?,?)", Array As String (Edtdescr.Text, EdtQtde.Text))
C = s.ExecQuery ("SELECT CODBARRAS, QUANTITY FROM PRODUCTS ORDER BY CODBARRAS")
Lvadiciona.AddTwoLinesAndBitmap (C.GetString ("CODBARRAS"), C.GetString ("QUANTITY"), LoadBitmap (File.DirAssets, "ICONE LIXEIRA2.jpg"))
Does anyone have an example how do I do this ??
The table has the fields:
CODBARRA PRIMARY KEY
QTDE
(S.ExecNonQuery2 ("INSERT INTO PRODUCTS (rowid, CODBARRAS, QUANTITY) VALUES (NULL,?,?)", Array As String (Edtdescr.Text, EdtQtde.Text))
C = s.ExecQuery ("SELECT CODBARRAS, QUANTITY FROM PRODUCTS ORDER BY CODBARRAS")
Lvadiciona.AddTwoLinesAndBitmap (C.GetString ("CODBARRAS"), C.GetString ("QUANTITY"), LoadBitmap (File.DirAssets, "ICONE LIXEIRA2.jpg"))
Does anyone have an example how do I do this ??