Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SET Variable’s do not work? #27

Open
41076 opened this issue Jul 2, 2023 · 1 comment
Open

SET Variable’s do not work? #27

41076 opened this issue Jul 2, 2023 · 1 comment

Comments

@41076
Copy link

41076 commented Jul 2, 2023

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)

@zipcode
Copy link

zipcode commented Jul 2, 2023

Thanks for the ping

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants