Hello everyone,
Sorry if I'm still new to this....I manage to follow the RDC tutorial and run the server successfully. But I don't really understand when the following sql command executes in the config.properties file.
I also have the RemoteServerClient on my device. Where can I check if table "animals" is created? I have XAMPP installed but I see no table ('animals') created. And also in the device, how I can I display the query?
Thank you and kind regards,
microbox
Sorry if I'm still new to this....I manage to follow the RDC tutorial and run the server successfully. But I don't really understand when the following sql command executes in the config.properties file.
B4X:
#commands
sql.create_table=CREATE TABLE animals (\
id INT NOT NULL AUTO_INCREMENT,\
name CHAR(30) NOT NULL,\
image BLOB,\
PRIMARY KEY (id))
sql.insert_animal=INSERT INTO animals VALUES (null, ?,?)
sql.select_animal=SELECT name, image FROM animals WHERE name = ?
Thank you and kind regards,
microbox