Link to home
Start Free TrialLog in
Avatar of kennethzxc
kennethzxc

asked on

.dbf to vb service or .net service to sql database

how to transfer data from .dbf to vb service to sql database
so I can generate a report for example
I have a clkdata.dbf which contains badgeno int ,datatime date,time varchar,clkid int.
what code would it need to transfer it to sql from dbf using vb thanks :)
Avatar of kennethzxc
kennethzxc

ASKER

here is the old sourcecode
I'll just change the values of the code but
I don't know what OS,SQL version and Visual Studio version and VPOLEDDB.1 will I use that is compatible with each other so I can't start thanks

FingerTech Visual Foxpro 9 DB                                                
 - clkdata.dbf --> holds mainly the attendance data needed to suffice the granularity requirement                                                
 - badge.dbf --> holds the information of the employee                                                
 - Timelog Table --> holds all information for the attendance report system                                                


Id      bigint
LogDate       datetime
LogType      nvarchar(3)
DoorNo      smallint
PeopleId      nvarchar(10)
      




id = sysgen                        
Logdate = clkdata.datetime                        
if clkdata.clkid = 1 then logtype = "IN" else logtype = "OUT"                        
DoorNo = "1"                        
PeopleId = badge.empno                        
                        
The source code and the dbf files is attach in .rar thanks :D
How to create service that checks the dbf files by 20000 secs ? maybe put a timer?
sourcodeold.txt
erro.txt
ASKER CERTIFIED SOLUTION
Avatar of kennethzxc
kennethzxc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial