Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
630 views

How to crack a dBase file password?

I've inherited a bunch of dBase (.dbf) files from a legacy application, and I need to import the data into MS SQL or MS Access. I know these programs have built in "import" functions, but the dBase ...
4
votes
1answer
212 views

Why does my parameterized query with Integer fields fail?

I have a TQuery object, pointed to a dBase database and I'm wondering how I should go about parameterizing my insert statement. The following INSERT-query will will work fine with qry.ExecSQL: ...
4
votes
11answers
920 views

What is the best way today to maintain clipper 5.3 code?

Are there any successor products on DOS, Windows or Linux?
3
votes
1answer
514 views

DOS legacy application with USB printer

I have the unfortunate task of doing (minimal) maintenance work on two legacy applications developed in DBIII+/Clipper '87. I have full access to source and a minimal toolchain to recompile the ...
3
votes
3answers
10k views

How to read/write dBase III files using C#/.NET ODBC or OLE?

I have searched for various techniques on how to read/write dBase III (dbf) files using OLEDB or ODBC with C#/.NET. I have tried almost all of the tecniques posted, but without success. Can someone ...
2
votes
2answers
74 views

How to add column to .DBF file?

One of the issues I have is that, I don't think the table has a name... its just a .dbf file So I've been trying this: public void SQLAlter(string dbffile, string ColumnName ) { //dbffile is ...
2
votes
3answers
195 views

Single quote in table name in a query c#

I am trying to run a query on a dbase IV table from C#. I am not all that experienced with C# and I have come to my wits end because my select statement fails because the table I am trying to query ...
2
votes
3answers
203 views

Is dbase obselete

Is dbase considered obsolete? There was a time when it was more prominent that SQL, but now it seems largely dying...
2
votes
5answers
170 views

I need a unique subset of data from my table using SQL

I am working with a Dbase table via SQL commands. I have the following free table to work with. import1 account, phone, subaccount, locationid I need the first occurrence of each uinique ...
2
votes
2answers
4k views

How to open DBase files (.DBF) in Matlab?

I've googled and searched through Matlab Central, but cannot find any way to open DBF files directly in Matlab. There are some references to DBFREAD function in TMW File Exchange, but it's not ...
2
votes
2answers
214 views

Have you ever had this error?

microsoft visual studio opens my table using dataset designer but i cannot open my table using the same connectionstring. my database is DBase IV. and this is the connectionstring ...
2
votes
3answers
318 views

Need to open and write a DBASE4 table. Which Delphi route please?

I've a need to open and append a DBASE4 table with Delphi (7 and 2009/10). Presently it is done using home-rolled code. I presume this task is easy with Delphi, but which link mechanism should I use? ...
2
votes
6answers
3k views

There is any free DBF file converter?

I have only found trial versions of these converters. Does anyone know a free one? Any of the following target formats will do: CSV, MDB, SQL, XLS
2
votes
2answers
2k views

Delphi ADO connection to DBF files hangs when debugging

I'm connecting to DBF files using Delphi 2009 ADO components and this connection string: Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;Dbq=c:\mypath; If c:\mypath doesn't exist, and I run ...
1
vote
0answers
24 views

How to use phpmyadmin pma_table_info

phpmyadmin(9) is the advanced features dbase. I finally got the pma_history table in that dbase to work by adding 3 lines in \xampp\phpMyAdmin\config.inc.php : $cfg['Servers'][$i]['history'] = ...
1
vote
2answers
98 views

Howto update index file after update query in FoxPro dbf

I need to update records inside a FoxPro (dBase?) .dbf files. The field I need to update inside the record also have an index. Update the record works fine, but the index is not updated. I'm searching ...
1
vote
2answers
40 views

Shapefile dBase Data (naturalearthdata.com)

I'm researching using natural earth for a software project, so I pulled down a sample data file and had a peek into its dBase file, namely ne_50m_admin_0_countries.dbf Here is a sample row from said ...
1
vote
1answer
158 views

Where can I download php_dbase.dll? [closed]

I need to read DBF databases but I didn't find php_dbase.dll in php.net (I only found the .c sources). Could someone provide me the link to download this DLL ? Thank you
1
vote
2answers
467 views

Problem reading dBase DBF with non-English characters

I have a tool which reads dBase files and uploads the contents to SQL Server, part of a system to import shapefiles. It works but now we have a requirement to import files that include non-English ...
1
vote
3answers
575 views

Python dbfpy and FoxPro

Alright, I'm using an ancient database format here, dbf files. Don't ask why, just know a certain software decided to extend foxpro support because microsoft decided to extend foxpro support. Now, I'm ...
1
vote
3answers
780 views

Efficient way to bulk insert into Dbase (.dbf) files

Im currently using OleDBCommand.ExecuteNonQuery (repeatedly called) to insert as much as 350,000 rows into dbase files (*.dbf) at a time from a source DataTable. I'm reusing an OleDbCommand object and ...
1
vote
3answers
188 views

I need some info about dBase field types

I need to store an array of words and bytes (and some other data) in a TDBF database (this DB is compatible with dBase). But I don't know the meaning of the field types this DB is using. For example ...
1
vote
2answers
139 views

How do I open an Access 97 data file using Delphi

I need to read the data in an Access 97 file that has about 400K records. I would like to use either TurboDelphi Pro or dBASE SE. I only have Access 2003. What is the easiest way of proceeding
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
3answers
412 views

What is a good way of accessing dBase files using BDE and Delphi?

First of all, I must state that I'm a complete newb when it comes to Delphi, although I did some Turbo Pascal programming in school, some fourteen years ago... I have a commercial Delphi program ...
1
vote
1answer
109 views

Should I backup DBF file while it is open?

I need to create a little program that creates a backup copy of some DBF files on demand. the files are used by a custom designed Web application. Is it safe to copy a dbf file while it is open or do ...
1
vote
0answers
223 views

How to specify numeric width and precision when creating a dBase database?

We need to be able to create a dBase database (.dbf file) containing numeric columns with specific width and precision. I seem to be able to set the precision but not the width. The following code ...
1
vote
1answer
329 views

connection to dbase from jdbc on linux

can we connecting a dbase/foxpro .dbf file on linux using jdbc? thanks
1
vote
2answers
440 views

.NET DBF Database connectivity issue

Hey all, really bashing my head against a keyboard here, any information or pointing in the right direction would be fantastic. I have a set of .DBF files with .MDX indexes. They're supposed to be ...
1
vote
2answers
996 views

Connect to ESRI Shape File (DBase *.dbf file) from NHibernate

I've been trying to work out how to connect to an ESRI shape file (which I think is a DBase table file) through NHibernate but haven't had any luck with anything I've tried. Currently, my config's ...
1
vote
1answer
973 views

reading dbase file without standard .dbf extension

I am trying to read a file which is just a dbase file but without the standard extension the file is something like: Test.Dat I am using this block of code to try and read the file: string ...
1
vote
4answers
1k views

Changing DBF field size

I worked with ESRI shapefile format right now and i have some problem with changing/editing database field size. I created a field with 200 length/size and now i want it to only 80 length/size (space ...
0
votes
1answer
22 views

Having problems with sustained usage of odbc with dBase files in C#

Here is my code: private const string CONNECTION_STRING = "Driver={Microsoft dBase Driver (*.dbf)};" + "collatingsequence=ASCII;" + "defaultdir={0};" + "driverid=277;" + ...
0
votes
3answers
84 views

Foxpro - Error 15: “Not A Table”

I'm working on a C# application that reads/saves data in some old dbf-files. (using Microsoft Visual FoxPro - driver) I haven't had any problems until recently, when i tried querying a table i had'nt ...
0
votes
3answers
132 views

Delphi DBase III component

Hi could anyone recommend a free component that I can use to load dbase III tables into Delphi, preferably without using the BDE. Something like TTable but for Dbase thanks colin
0
votes
1answer
71 views

Creating a DBF File, as part of a shape file, without a DBT file - in C#

I want to create a DBF file: it should be dBase III format. As part of an ESRI Shapefile dBase format III WITHOUT A MEMO \ DBT FILE. Single column multiple rows. I've tried a lot of options the ...
0
votes
2answers
28 views

Extract memo field data from dBase file

I have a MSDOS clipper application that uses dBase as it's database engine, some of it's fields are stored on external files (with .BIN extension), the database file seems to store some binary pointer ...
0
votes
2answers
40 views

Dbase oledb provider load data without this deleted records?

I am importing data from dbase into sql and am using the following connection string to read data: "Provider=Microsoft.Jet.OLEDB.4.0;" + @"Data Source=D:\GS\Source;" + ...
0
votes
2answers
110 views

PHP dBase as an alternative to SQLite

I have read several comments here that dBase is a dead system and no one use it anymore. I compared dBase and SQLite in php, and in my test dBase has many advantages over SQLite and similar systems: ...
0
votes
0answers
55 views

How to configure Php5 in Ubuntu 10.10 to make it Parse DBF(DBase) file? [closed]

I need to connect to the DBase File using php. I searched over internet and got this link to configure the php5. But it didn't work for me.. Can anyone help...
0
votes
1answer
125 views

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. What are my alternatives?
0
votes
1answer
132 views

VB6 code returns zero records when running in Windows 7

The following vb6 code executes a query on an dbase database. The code runs without errors in both Windows XP SP3 and Windows 7. However, when running on Windows 7 the query returns zero records and ...
0
votes
2answers
132 views

C# problem querying dbase file; problem using WHERE clause

I'm querying a dbase .dbf file with odbc from within my c# code and am having a problem using a 'where' clause in my query. I can retrieve and read the records fine if I just 'select * from ...
0
votes
1answer
156 views

Reading a dbase table design

I'm reading a dBase database and then sending that table to a SQL Server 2008. My problem now is how am i able to get the column type correctly, right now i'm getting varchar(255) on all character ...
0
votes
2answers
21 views

Hyperlinking to a nonserver machine

My church has a management software that we would like to have several people access at the same time but over the internet. We have a website but it is hosted by another company. Is it possible to ...
0
votes
0answers
96 views

How to write into dBase tables using Ruby on OSX?

I found only read-only dBase gems (dbf) but without write support. ODBC could be an option but on OSX I didn't find any drivers available. Any suggestions ?
0
votes
1answer
30 views

Want to run two instances of a mySql CRM app (one desk side and one webserver side) and want both databases to be synced

Want to run two instances of a mySql CRM app (one desk side and one webserver side) and want both databases to be synced. I like the CRM on the desktop because it is fast and I can set the settings ...
0
votes
3answers
280 views

open a dBase table

I have to copy some information from an old dBase database using ADOConnection and AdoTable. I am able to open all tables but I get this exception Data provider or other service returned an ...
0
votes
0answers
222 views

Very Slow while Fetching Data From .DBF file by using OLEDBCommand Object excutereader from NetworkShare

I am fetching data from dBase4 database by using object of oledbcommand from Newtwork share and load it into datatable. but it is taking too much time to fetch 160 records around 5-10 minutes. I ...
0
votes
2answers
506 views

Marshal C++ float to C# float accuracy problem

I have a DBase IV database. Each row has a memo field with a ASCII encoded string that holds two serialized borland c++ structures. I am able to pull the data using OleDb, re-encode it to ascii using ...

1 2