-
Notifications
You must be signed in to change notification settings - Fork 0
SET Variable’s do not work? #27
Copy link
Copy link
Open
Description
Following query works flawlessly on the MAC os version but does not do anything on the iOS versions.
Result Query ‘OK’ but is not adding the data.
#LocationInsertNL
SET @Country = "country";
SET @zipcode = "xxxx KD";
SET @State = "state";
SET @city = "city";
SET @neighbourhood = NULL;
SET @streetname = "street name";
SET @buildingNr = 77;
SET @buildingNrAddition = NULL;
SET @floorNr = NULL;
SET @roomNr = "Some room";
INSERT INTO location
( country, zipcode, state, city, neighbourhood, streetname, buildingNr, buildingNrAddition, floorNr, roomNr)
VALUES (@Country,@zipcode,@State,@city,@neighbourhood,@streetname,@buildingNr,@buildingNrAddition,@floorNr,@roomNr)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels