Andre  
                
                  
                    17 December 2018 13:45
                   
                  1 
               
             
            
              I would like to add a hexidecimal key of an RFID tag like 3D433FF4A in SQlite
This is my code to create a table in Sqlite:
CREATE TABLE userlist_9(currentdate DATE, rfid TEXT, number INTEGER)
 
This is my code to add something to Sqlite:
var timestamp = Date.now();
    var rfid = global.get("rfid_key")
    var counter_locker = global.get("counter_locker")
    var newMsg = {
     "topic": "INSERT INTO userlist_9 VALUES ( " + timestamp + "," + rfid + ", " + counter_locker + ")"
    }
    return newMsg;
 
With normal numbers it works fine, but with hexidecimal numbers I get the following error: 
"Error: SQLITE_ERROR: unrecognized token: "2b334f""
 
             
            
              
            
           
          
            
              
                Colin  
              
                  
                    17 December 2018 14:05
                   
                  2 
               
             
            
              Put a debug node showing complete message on the output of the function node and show us what it says.
             
            
              
            
           
          
            
              
                Andre  
                
                  
                    17 December 2018 15:28
                   
                  4 
               
             
            
              With normal numeric value: No error
             
            
              
            
           
          
            
            
              If you want to insert text into the table you need to wrap it in quotes.
INSERT INTO userlist_9 VALUES ( 1545060116109,"2b334f", 1)
It works when you try inserting a number because it can be parsed without the quotes around it.
             
            
              
            
           
          
            
              
                Colin  
              
                  
                    17 December 2018 15:43
                   
                  6 
               
             
            
              
I think you can (should?) use single quotes in sqlite, which makes it a bit simpler coding the string.
             
            
              
            
           
          
            
              
                Andre  
                
                  
                    17 December 2018 17:44
                   
                  7 
               
             
            
              Thank you, it works
var timestamp = Date.now();
var counter_locker = global.get("counter_locker")
var newMsg = {
return newMsg;
 
             
            
              1 Like