android - Tool to export contact numbers saved in microsoft access database to CSV format? -
i have large database (500) contact numbers and, want save them individual contact numbers in android mobile.
how export data saved in microsoft access database csv format?is there tool can ?!
to export table or query in csv format, use docmd.transfertext method.
docmd.transfertext acexportdelim, "", "yourtablename", "c:\foldername\filename.csv" the above code export table yourtablename specified path.
Comments
Post a Comment