Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[mihini-dev] Mihini Table Creation

 Hi guys          
            

              I am using racon library and creating some table withsome data and it writing some file
with .tbl extension please can you explains me mihini using which database and how to access it.

Example:

    tbl = av_asset:newTable('example', {'timestamp', 'temp1','temp2','temp3','temp4'}, 'file', 'never')
   local dst = tbl:newConsolidation('consolidated',
            -- { timestamp='median', temp1='mean', temp2='mean' , temp3='mean' ,temp4='mean' })
    --fill data into src
    tbl:pushRow{ timestamp=1, temp1=25 , temp2=25 , temp3=25 , temp4=10 }

and it writing following name file.

Database.example-temp1-temp2-temp3-temp4-timestamp.tbl


Back to the top