开发者

dbase replacement

I have a few applications written in dbase 3 plus which I use for accounting purposes. Even though they get the job done I would like to migrate them to a modern language. Wha开发者_C百科t are my alternatives?


Without having any other skill sets that you can state, you can jump to almost anything. Me personally, coming from Visual Foxpro, and having exposure to object-oriented design, coding since 1993, it was a relatively easy shift into C#. As far as pushing into a different database from dBase III Plus, there is a ton of great support here in the MySql world along with all other languages too. Good luck.


Currently, commissioned me to migrate all my .dbf files to MySQL, a library, currently runs on Linux, developed in php, if you want to use it, here's the link and an example of how easy it generates .sql files https://github.com/julio899/migracionesDBF I hope you can be useful.

// folder containing DBF files
$directorio_de_archivos = "./DBFWEB/";
$archivos_dbf=array('01INV.DBF','01_INV.DBF','02_CHE.DBF','02_CPC.DBF');
    foreach ($archivos_dbf as $key => $archivo) {
        $ruta=$directorio_de_archivos.$archivo;
            $obj=new DBF($ruta);
            $obj->tabla_y_datos();
    }
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜