urdey

Members
  • Posts

    22
  • Joined

  • Last visited

Posts posted by urdey

  1. Hi 

               Good morning Sir

                                                  Thanks for your reply.In  MySQL Arduino is the SQL database dht11_log is the sensor and column temperature, humidity, and timestamp are stored in SQL format.

    I want to display individual parameter temperature , humidity, and timestamp in DAQFACTORY Page as shown in the attachment. Waiting at your earliest convenience.

    Best Regards

    UDEY

     

     

    How to get Different diplay in page.JPG

     

     

    image.png

    image.png

  2. Hi

                 Thanks for the reply I can open Db but I want to  read from MySQL and display Temperature and humidity in page. Temperature and humidity is an integer .

    Daqfactory can read charor varchar  from MySQL so how to display the content in page.

    //how to update a record in MYSQL
    private dbase = db.Open("arduino")
    private result = db.QueryToClass(dbase,"select * from dht11_logs;")
    db.execute(dbase,"update dht11_logs set temperature = 50")
    db.execute(dbase, "update dht11_logs set humidity=32")


    try
    private dbase = db.Open("arduino")
    private result = db.QueryToClass(dbase,"select * from dht11_logs;")
    db.execute(dbase,"update dht11_logs set temperature = 90")
    db.execute(dbase,"update dht11_logs set humidity=0"
       

    global datain = db.QueryToClass(dbase,'select * from dht11_logs;')
    global string dht11_logs = datain.content
    ?"Getting sucessfully !"
       
    db.Close(dbase)
       
       catch ()
       ?"Fail to connect!"
       
       endcatch

     

    Waiting at your earliest.

    Regards

     

     

     

     

    image.png

    image.png

  3. yes, temperature name of the table. I would be grateful if you tell me the format to read the table through a query command and displaying the value or a channel or update the channel.

    global dbase

    global qr

    global count

    global thetime

    global batch

    global start

    global strTime

    global dbase = db.Open("arduino")

    db.queryToClass(dbase, "select * from arduino;")

    db.execute(dbase, "update table1 set NAME = 'xyz' where ID=60")

    //global qr =db.QueryToClass(dbase,"select*from temperature")
     

    error message 

    O1004 Unable to run query: db Line 19 - Uncaught error in sequence db

     

    Regards

    Udipta

    image.thumb.png.d120875ad637a1da063e5f6906c1af65.png

     

  4. image.thumb.png.ce167cc2cf1d72d87da68a72caf955a6.png

    Dear Sir

                       I am trying to open  MySQL databases as connection to ODBC with MySQL is ok . Communicating  Daqfactory with MySQL showing unable to open database and I want to read tables 

    and want to display the content of the table on the page.

    Best Regards

    Udipta

     

    Unable to open.JPG

  5. Hi Guru

     

     

    HTTP.Get();
    private string in = HTTP.Get("192.168.1.250") 
    AL1350.Path ="/iolinkmaster/port[4]/iolinkdevice/pdin/getdata"
    Find("value","getdata",0) 

    global string hex = "value" 
    Evaluate("value")

    myChannel = Evaluate("0x" + hex) 


     while(1)
       myChannel.query()
       delay(60)
    endwhile

     

    Command/Alert shows 

    C1040 channel does not have any valid values line 15 uncaught in sequence

    Temperature values is not updating and showing 0.0000

     

    Regards

     

     

     

  6. Hi Guru 

    Thanks for reply

     

     

    HTTP.Get();
    private string in = HTTP.Get("192.168.1.250") 
    AL1350.Path ="/iolinkmaster/port[4]/iolinkdevice/pdin/getdata"
    Find("value","getdata",0) 
    Evaluate("value")

    private string hex = "value" 
    private dec = evaluate("0x" + hex) 

     

    How to display value as channel in page since value is temperature in decimal format