Questions tagged [dbisam]

DBISAM is an embeddable relational database mainly geared to Delphi and C++Builder application developers.

DBISAM is an embeddable relational database mainly geared to Delphi and C++Builder application developers.

Documentation and product page.

21 questions
0
votes
0 answers

Can we read dbisam .dat files through vb.net

I am using a 3rd party account software which uses a dbisam database and have tables with .dat extension. is there any way to read dbisam tables in vb.net? I am getting quite difficult to read dbisam in visual basic, is there any guide of tip…
Kamran
  • 1
  • 2
0
votes
2 answers

Choosing Correct Database For Delphi Project

I am developing with Delphi XE2. I am planning a software for primary and secondary school. This school have 1,500 students. The database model is relational and we plan to keep the whole history of each student as the years move on. (well at some…
Eduardo Elias
  • 1,742
  • 1
  • 22
  • 49
0
votes
1 answer

DBISAM - Error 8708 - Version 2.03

I am trying to update the field CNAME and using it on a Where clause: update SGT000 set CName='STA2'where CName='STA23' The DBISAM raises a exception 8708 (Record has been changed or deleted by another user in table 'SGT000.DAT') I am using version…
p.magalhaes
  • 7,595
  • 10
  • 53
  • 108
0
votes
1 answer

SQL Update based on and Select Result From Same Table

I am going to do my best to clearly describe what I am trying to do. I am using a DBISAM SQL database. We sell t-shirts, and lots of different kinds. I am trying to update our product database with values from other products in the database. here is…
0
votes
2 answers

DBISAM database utility

I have a DBISAM database that I need to open and view and eventually migrate to SQL server, if not atleast a comma separated file. Does anyone know of a util to do that?
superartsy
  • 489
  • 1
  • 11
  • 27
-1
votes
1 answer

Select distinct with condition

I need help to build a query that select distinct with a condition. For example: SELECT EMP, COD, VEV, GRU, (SELECT DISTINCT CAST(EMP , CHAR(20) ) + CAST(COD , CHAR(20) ) AS CONCAT FROM HCOV WHERE GRU = 212 ) FROM HCOV In this example I need to…
1
2