Questions tagged [accuracerdb]

accuracerdb is a single-file client/server embedded database for Delphi, C++Builder and Kylix.

WebSite: www.accuracer.com/

Accuracer Database System is a Windows/Linux cross-platform BDE alternative embedded Delphi database with SQL support for software developers working in the Embarcadero RAD Studio, Borland (CodeGear) Delphi / C++Builder and Borland Kylix.

Accuracer represents the next generation of a product known as EasyTable.

5 questions
1
vote
3 answers

ReadWrite TMemoryStream from BLOB

How can I store a TMemoryStream to a BLOBB Field and read from it using Accuracer DB / SQL. With SQL I mean ABSQuery.. Thanks
user299323
  • 55
  • 2
  • 8
1
vote
1 answer

Database Record Processing

How can I split the workload of records across multiple threads specifically Accuracer DB that has 169 records with 7 threads for example. Because I could just split the number of records in ranges and let each thread process the range. But if user…
user299323
  • 55
  • 2
  • 8
0
votes
2 answers

accuracer : transaction not working

Database and the components,query & table are from Accuracer. I am using a simple delete query : procedure TMain_Form.Button1Click(Sender: TObject); begin DATA_MODULE.QUERY.Close; DATA_MODULE.QUERY.SQL.Clear; //DATA_MODULE.QUERY.SQL.Add('START…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
1 answer

How do you log a specific table in Accuracer?

Code like this logs all table inserts (from the entire application): procedure TForm1.ACRDatabase1AfterInsertRecord(Sender: TACRDataSet; const TableName: WideString; const FieldValues: TACRArrayOfTACRVariant); begin if (AnsiUpperCase(TableName) =…
user3927897
  • 611
  • 3
  • 10
  • 20
-1
votes
2 answers

'cursor is in BOF position' error

On before delete of the table I have : procedure TData_Module.MyTableBeforeDelete(DataSet: TDataSet); begin if MessageDlg('Are you sure you want to delete the record written by '+ …
user763539
  • 3,509
  • 6
  • 44
  • 103