You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: