4

我正在编写一个 C# 程序来将 FoxPro 数据库转换为 XML,除了备注字段为空之外,一切正常。有什么我想转换的东西吗?

我正在使用 C# .Net 3.5 SP1、Visual FoxPro 9 SP 1 OLE DB 驱动程序。连接字符串没问题,因为所有其他数据都被正确提取。

当我将 FoxPro 数据库转换为 SQL Server 时,那里的备注字段也是空白的,所以我不能转换两次。

4

3 回答 3

3

最终不得不自己做一些工作,但也许它可以在未来帮助别人:

        public static object GetDbaseOrFoxproRawValue(string DBPath, string TableName, string ColumnName, 
        string CompareColumnName, string CompareValue, bool CompareColumnIsAutoKey)
    {
        using (BinaryReader read = new BinaryReader(File.Open(
            Path.Combine(DBPath, TableName + ".dbf"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite)))
        {
            // Is it a type of file that I can handle?
            if (new byte[] { 0x02, 0x03, 0x30, 0x43, 0x63, 0x83, 0x8b,
                             0xcb, 0xf5, 0xfb }.Contains(read.ReadByte()))
            {
                // Skip date.
                read.BaseStream.Seek(3, SeekOrigin.Current);

                // Read useful datas...
                uint RecordCount = read.ReadUInt32();
                ushort FirstRecord = read.ReadUInt16();
                ushort RecordLength = read.ReadUInt16();
                int FieldCount = FirstRecord - 296 / 32;

                // Make sure things aren't stupid.
                ColumnName = ColumnName.ToLower();
                CompareColumnName = CompareColumnName.ToLower();

                // Find target column (field)
                string temp;
                UInt32 CompareFieldOffset = uint.MaxValue, FieldOffset = uint.MaxValue;
                byte CompareFieldLength = 0, FieldLength = 0;
                char FieldType = ' ';
                for (int i = 0; i < FieldCount; i++)
                {
                    read.BaseStream.Seek(32 + (i * 32), SeekOrigin.Begin);
                    temp = Encoding.ASCII.GetString(read.ReadBytes(11)).Replace("\0", "").ToLower();
                    if (temp == CompareColumnName)
                    {
                        read.ReadChar();
                        CompareFieldOffset = read.ReadUInt32();
                        CompareFieldLength = read.ReadByte();
                    }
                    if (temp == ColumnName)
                    {
                        FieldType = read.ReadChar();
                        FieldOffset = read.ReadUInt32();
                        FieldLength = read.ReadByte();
                    }

                    if (CompareFieldOffset != uint.MaxValue && FieldOffset != uint.MaxValue)
                        break;
                }

                // Make sure we can continue.
                if (CompareFieldOffset == uint.MaxValue || 
                    FieldOffset == uint.MaxValue) return null;

                // Iterate through each record to find the one we want.
                for (int index = 0; index < RecordCount; index++)
                {
                    read.BaseStream.Seek(FirstRecord + (index * RecordLength) + CompareFieldOffset, SeekOrigin.Begin);
                    temp = Encoding.Default.GetString(read.ReadBytes(CompareFieldLength)).Replace("\0", "");
                    if (temp == CompareValue)
                    {
                        read.BaseStream.Seek(FirstRecord + (index * RecordLength) + FieldOffset, SeekOrigin.Begin);
                        switch (FieldType)
                        {
                            case 'M':
                            case 'I': return read.ReadUInt32();
                            case 'C':
                            default: return Encoding.Default.GetString(read.ReadBytes(FieldLength)).Replace("\0", "");
                        }
                    }
                }
            }
            else
            {
                return null;
            }
        }

        return null;
    }

只需从中获取结果并将其用作备忘录文件的索引(该代码使用 MSDN 文档非常简单)。

于 2009-01-12T16:55:12.300 回答
1

我对 C#、FoxPro 或 SQL Server 不是很熟悉,所以在这方面我不能给你太多建议。

但是,如果您找不到合适的驱动程序,您可以考虑自己解析原始数据和备忘录文件。另一个问题已经解决了这个问题:

从 Python 读取 FoxPro DBF 文件的最简单方法是什么?

信不信由你,如果您决定编写自己的 C# 解析器,这些文件格式的解析非常简单。这些规范可从 Microsoft 获得:

于 2009-01-09T14:44:51.957 回答
1

我使用 ODBC 链接 VFP 8 表,并且备注字段可以正常工作。我不知道OLEDB是否不同。

此处可能没有 Visual FoxPro 表。许多 VFP 系统使用与它们替换的 FoxPro 2 或 dBase 应用程序相同的表。您可以查看文件头或尝试其他 ODBC 驱动程序之一,看看它们是否工作。

于 2009-01-09T15:45:43.580 回答