ISAM database format originally created in dBase but used by many other systems and still widely used for information interchange.
0
votes
2answers
28 views
C# insert datetime to DBF file
I'm getting a Syntax Error in the below code. From my testing, it's coming from the field "tax_month" which is a DateTime. I can't figure out how to insert a value in DateTime format.
Schema of that ...
0
votes
1answer
40 views
c# delete from dbf where x=1 AND y=2
I need to delete rows from dbf file using OLEDB.
Why this query doesn't work? Got error from database driver.
m_query1 = "DELETE FROM tablename WHERE N_U='VS1' AND QMONTH=1";
But this works fine:
...
-1
votes
0answers
36 views
How to load database from dbf file in 'Toad for Oracle' to run select queries [closed]
I have database backup files in the following format: .dbf, .svd, .log and .arc. My database is Oracle 11g.
I want to load data from these backup files so that I can run some select queries on it ...
0
votes
2answers
34 views
DBF number Formating C#
I create DBF File with c# and oledb , the files are correcte and are filled perfectelly , no problem at all. I just a very tiny issue with it , it's that when i open those dbf files, all int values ...
0
votes
1answer
37 views
Sql Parametrized syntax error with VFP OleDb
I'm trying to make an SQL parametrized update command for a DBF File ( Visual Fox Pro )
I don't know why, but i have a "syntax error" on the "DbCommand.ExecuteNonQuery();".
The exception error ...
1
vote
2answers
26 views
Appending all dbfs in folder to first dbf with bash script
I try to append all dbfs in a folder to the first dbf. The dbfs are part of ESRI shapefiles that I want to append into one file. I got a working code but I guess what I did is really awkard (I'm an ...
0
votes
3answers
37 views
OLEDB DBase VI :Syntax error in field definition
I am trying to create a DBF table when i get this error "Syntax error in field definition." , however there is nothing wrong with syntax , and when I change a certain column name from level to levels ...
0
votes
3answers
41 views
Create a table with integer or numeric(4.0) in dBase width Jet.4
I want to create a table (.DBF file) with an Integer(4) field using Microsoft Jet dBase Provider. There is my code :
Dim conn As New OleDb.OleDbConnection
Dim comm As New OleDb.OleDbCommand
...
0
votes
3answers
66 views
SQL query seems to have an Error
I have a DBF - foxpro query and seems like I have an error, I am using codeIgniter and its feedback is just Fatal error: Call to a member function execute() on a non-object in ...
0
votes
1answer
72 views
Generating a new DBF file using vb.net
I am trying to create a .DBF file using vb.net after figuring out that generating an access DB and afterwards converting it to a .DBF was not really possible within vb.net
However, now I am ...
-1
votes
1answer
68 views
Saving an Access table as dBASE_IV file (.dbf) in VB.NET
I am making a small application that will read .csv files into a newly generated access table (generated with vb.net), I am filling this database with sql and now I would like to output that table as ...
0
votes
0answers
31 views
Create dbase ODBC on Ubuntu 12
first of all, sorry for my English.
i'm, developing with PHP and a dbase db. Usually I do that on a Windows machine but, sometimes, i have to develop on Ubuntu. The problem is, i can't find a way ...
0
votes
2answers
59 views
file dbf is not marked with a code page
I have created a dbf file using dbase_create() function in PHP. The file is successfully created but the problem is whenever I open the file in visual foxpro 9, it says
"File mydbffile.dbf is not ...
1
vote
1answer
190 views
Reading DBF File Structure in VB.Net as binary file
I am opening a DBF as a binary file in VB.Net to determine the structure. I have to do it this way since using the Visual Foxpro OLEDB driver does not return the precision and scale of decimal ...
-1
votes
1answer
40 views
\r\n in a string not accepted on database [closed]
I create a string variable for an Update SQL command in order to execute this command to a dbf file ( with OleDb).
When my SQL Command contain in a string \r\n the SqlCommand is not accepted :(
...
0
votes
1answer
61 views
DBF File name truncated
I used the below code to create a dbf file and filling it, everything works fine . the problem is the name of the file got truncated to 8 caracters max. any idea why or how to make maintain the whole ...
0
votes
1answer
59 views
PHP: Connect to a shared folder on the network
I am making an application in codeignite ..
I need to connect to a shared folder on the network ...
from there open a dbf and take the data and include them in a mysql db on .......
but to connect to ...
1
vote
1answer
29 views
What is it about a file type that determines whether or not it can be opened in Excel? [closed]
For example, I can open up an .xls file or a .csv file in Excel and it will automatically know it's a valid filetype and have everything associated to the cells cleanly.
However, the same applies to ...
0
votes
0answers
90 views
access options .dbf file crystal reports
I was hoping for some opinions could be provided on the following options to access .dbf via crystal? (Pros, Cons, examples or alternative methods)
From my testing thus far, there seems to several ...
0
votes
2answers
146 views
operator/operand type mismatch when update dbf file
i have a program needs to update data in dbf file. but it keeps appear error 'operator/operand type mismatch'. here is sample code :
Dim con As OleDbConnection = New ...
0
votes
0answers
104 views
update *.dbf file using data in each cell in *.xls file
i write a program that i need to update in the *dbf file from data in the *xls file using specific id.
now i have 2 problem that i need a help.
1, the error is display MsgBox("Can not open ...
1
vote
1answer
52 views
dbf file insertion Take a long Time
I use OLEDB to insert data to a DB4 .dbf file. Inserting 13 row takes almost 1 minute wich is soooo loong, theis problem only accur during insertion in one table , that contain a varchar 20 , 2 dates ...
0
votes
1answer
320 views
read data from xls file then update to dbf file using vb.net
i want to ask is it possible to read the data in *xls file then get data and update to *.dbf file based on the staff id using vb.net script? if yes, do i need convert the xls to dbf first and then do ...
0
votes
1answer
142 views
dbf file created in c# can not open in dbase
i created a file .dbf with C# code in using OdbcConnection, but when i want to open it with dbase, it says that's not a dbf file, could anyone explain me why and how it could work ?
0
votes
2answers
194 views
Error when opening dbf file: External table is not in expected format
I'm using the code below to import a dbf file.
But I am getting an error:
'External table is not in expected format'
if (ofdDBF.ShowDialog()==DialogResult.OK)
{
string connStr = ...
0
votes
1answer
74 views
dbf to xls - first non header row not writing
I would like to convert .dbf file to .xls using python. I've referenced this snippet, however I cannot get the first non header row to write using this code:
from xlwt import Workbook, easyxf
...
0
votes
0answers
1k views
Dynamically change database type, source etc in Crystal Reports (for Visual Studio 2012)
I've researched many different ways of how to dynamically change the datasource connection here on StackOverflow. I used and verified almost every c# and vb.net example I could find, but somehow ...
0
votes
1answer
93 views
What's the best way to insert data from dbfpy into MySQL?
I'm using the dbfpy module to read data from DBF files with the intention of writing that same data to equivalent MySQL tables. Here's a rough version of my code:
###################
# BEGIN CONFIG
...
0
votes
1answer
70 views
How to obtain the field type using dbfpy?
I have some dbf files that I want to add new fields to. To do so, I'm using dbfpy to open the original dbf, copy all fields (or the ones I want to keep) and records and then create a new file with ...
0
votes
2answers
225 views
What's the best way to routinely import DBase (dbf) files into MySQL tables?
The DBF files are updated every few hours. We need to import new records into MySQL and skip duplicates. I don't have any experience with DBF files but as far as I can tell a handful of the one's ...
0
votes
3answers
32 views
Best DB format & moor entity’s or a compound key? [closed]
Im Aidy and I have some questions im hopping someone out there maybe able to help me with.
Firstly what is the best DB format to use?
For instance dbf, MySQL etc.
Secondly if im looking at a system ...
0
votes
1answer
56 views
Pass dbf data to sentence and save as text file using Python 2.7
I have a script which exports some results to a dbf file (dbf is my only export option for the software I am using). I would like to use these results (number of rows will vary) to output a sentence ...
0
votes
0answers
86 views
How to ADD record in DBF File using Java and xBaseJ
I was researching about how to add a record in DBF files and also "reindex" the NTX file. But I did not get any lucky. Does anyone know how to add a row with data and make a "reindex" in NTX using ...
0
votes
1answer
66 views
cannot handle matrix/array columns with write.dbf
hope i get everything together for this problem. first time for me and it's a little bit tricky to describe.
I want to add some attributes to a dbf file and save it afterwards for use in qgis. its ...
0
votes
1answer
142 views
How to edit DBF and NTX files
I want to add a register into a DBF file using java. I can do that but when I try to see the register into the system that use the DBF file nothing appears. I was trying to do this manually, opening ...
0
votes
1answer
267 views
trouble with 2010 save as dbf
Below is the code I'm trying to fix. It works in Excel 2007 but not in Excel 2010.
I believe it has to do with the XlDBF4 part. Please help.
Range("A1").Select
ActiveWorkbook.SaveAs ...
0
votes
0answers
86 views
C# - Accessing a DBF file in a Stream
I have a WebMethod which I use to allow a user to upload a database file (*.DBF). I know I can access the *.DBF file using a OleDbConnection with the appropriate connection string. But I dont really ...
2
votes
0answers
146 views
64 bit java read write *dbf
Heya all,
I am having some issues and maybe someone has an answer for me!
I am trying to read write some *DBF table from a java application. I have found this code :
try
{
...
1
vote
1answer
77 views
Creating a dbf that is a subset of another dbf (by criteria)?
I have a dbf I need to import into MS Access, but it is too large to import directly (it's a 4 GB .dbf) although I do not need the whole thing. I only need a subset of the .dbf where the date ...
0
votes
0answers
133 views
Reading DBF file using PHP - will it corrupt the file or database?
A software is saving all data in DBF files and I'm reading it using use PHP. The software accesses and uses these files all the time. So, if i read those data and files using php same time, will it ...
1
vote
1answer
109 views
error when update table with odbc in php
I have database with DBF format, and use the ODBC to access the database.
When i do update on the table, it returns error:
Warning: odbc_execute() [function.odbc-execute]: SQL error: [Microsoft][ODBC ...
-2
votes
2answers
451 views
how to convert .DBF file format to .dbf file format?
I want to acccess dBase database. It's not directly have any database name. it's have table name base data file. Normally dBase file format open in msaccess & msexcel. But it have .DBF file ...
0
votes
0answers
90 views
DBF database converting
I have DBF database that i need to convert to mysql. So i have a question:
When i take a look at DBF, database (with program called DBF Viewer), i can see this as value of some columns:
$aName of ...
0
votes
0answers
412 views
PHP Script to convert .DBF files to .MYSQL
Just wondering if anyone can point me in the direction of some tips / a script that will help me create an mysql from an original dbf File, using PHP.
thanks before.
0
votes
1answer
117 views
Access table in .dbf file + Oracle
I am trying to access a table which is present in the .dbf in the local drive.
This was my latest attempt, got this from another site
select at.owner || '.' || at.table_name table_name,
...
1
vote
1answer
287 views
Opening and searching dBase III (DBF) databases in Python
I'm looking to develop an application in python which needs to search through a dBase III database file (DBF). I've been searching for a while now, but I cannot find any good documentation on how to ...
1
vote
3answers
352 views
Reading DBF files with pyodbc
In a project, I need to extract data from a Visual FoxPro database, which is stored in dbf files, y have a data directory with 539 files I need to take into account, each file represents a database ...
1
vote
1answer
119 views
dBase .DBF null boolean value
I've strange problem: my dbf file have row with null boolean field. When I try to read this row from dbf file ODBC returns true for this field, but I want get null or false.
I test this in two ...
1
vote
1answer
273 views
Error when trying to convert dbf to csv in Python
Python newbie here so please be gentle.
I'm trying to convert dbf file to csv. I stumbled upon a previous, similar question (with opposite conversion though) and was thinking abou using dbf module.
...
0
votes
0answers
92 views
Connect to a DBF
Well, I'm developing a program where I have to connect to a DBF, but the problem is, I need to grab some data from DBF and put in textbox, such as ID, User name .... (These data that are stored in ...



