Tagged Questions
Xbase is a structured format for storing data in files and indexes. It was used originally by foxPro and dBase.
2
votes
4answers
814 views
Visual FoxPro Compact Index File Format
I am trying to understand the file format of a Visual FoxPro compact index (*.IDX). I am currently referring to Microsoft's documentation for guidance.
The index is a B-tree of 512-byte nodes. Each ...
1
vote
2answers
47 views
How can I write the following query in an executable way in SQL Server Express 2008
select doc_no,date,acc_no,amount,
if xvar=1
(select acc_head from my_crem c where c.acc_no=o.acc_no) as acc_head
else
(select acc_head from my_debm c where c.acc_no=o.acc_no) as acc_head
from my_ordm ...
1
vote
1answer
254 views
Which header format can be assumed by reading an initial .DBF byte?
Regarding the first byte of a .DBF file and how to detect the version of xbase used (ie, the format of the rest of the file), the most comprehensive list I can compile is:
Byte 0
-----------
x xxx x ...
1
vote
1answer
127 views
Drupal / ubercart remote node addition
I am developing my first large Ubercart site, which needs to have a daily product database update from an existing xBase (DBF format). The conversion from DBF to MySQL/PHP is handled on the same ...
1
vote
1answer
28 views
Handling arbitrarily large integers in dbase language
Is there a simple package available that permits programming in xbase ( i.e. dbase or Foxpro syntax) and has a datatype to store and perform simple arithmatical operations on arbitrarily large ...
1
vote
3answers
459 views
Python: Fast querying in a big dbf (xbase) file
I have a big DBF file (~700MB). I'd like to select only a few lines from it using a python script. I've seen that dbfpy is a nice module that allows to open this type of database, but for now I ...
1
vote
2answers
290 views
What is the most active clipper-like community?
I work for a company that is using Microsoft Visual Foxpro 9. Since Microsoft has abandoned us, we no longer get fresh driver updates (the last was for ODBC was built for VFP version 6.)
Clipper and ...
0
votes
0answers
89 views
What would this SQL query look like in dBase?
Can someone help me translate this query into a dBase equivalent expression?
select top 300 *
from CONTACT1 c1
left join CONTACT2 c2 ON c1.ACCOUNTNO=c2.ACCOUNTNO
where KEY1='10INQA'
...
0
votes
2answers
122 views
SQL to dBase Query Translator?
Is anyone aware of an application that will allow me to convert some existing SQL queries into dBase? I have an application that I need to program but it prefers dBase queries to SQL queries. I've ...
0
votes
1answer
362 views
How to connect to foxpro db using XbaseJ
I want to fetch data from fox pro data base and insert it into Mysql. For that purpose i am using XbaseJ. But how can i connect to my FoxPro data base using XbaseJ.
Thanks
0
votes
1answer
38 views
I need to consume an ocx for voice recording and playblack
The current ocx controls I'm using for voice recording and playback are not compatible with Windows 7. I'm already feeling the pressure to produce a Windows 7 compatible version of my software. The ...
0
votes
2answers
570 views
How do I read data from an xBase/Clipper file in VB6?
DBF file is in C:\dbase\clip53\PRG\stkmenu\WPACK3\
DBF file is called WPACKS.CFG (deliberately not .DBF)
The VB6 code in an ActiveX EXE for opening the database and recordset:
Function ...