Questions tagged [cdb]

Use this tag if you refer to "constant database", a library and data format created by Daniel J. Bernstein. Use the [windbg] tag if you're asking about Microsoft Console Debugger.

42 questions
0
votes
1 answer

C++ CDB debugger probleme

I'm using visual studios 2008 under QT 4.8.1 and QT library 4.8.6. For debug i use the microsoft tool CDB delivered with Visual Studios 2008. When running my program in release (ctrl + R) everything is good. When I try to lunch debugging ( F5 ) the…
Frimus
  • 23
  • 4
0
votes
1 answer

Can a debugger produce a list of all executed lines of source code of an attached process?

I'm working for a company, that does not have a habit of adding log entries in their source code. Hence, if something goes wrong, the amount of logs, explaining what might have happened, is too small to make any real analysis. Therefore I'm looking…
Dominique
  • 16,450
  • 15
  • 56
  • 112
0
votes
1 answer

How to write debugging helper for cdb in qt creator?

We're switching from using GCC/GDB in our project to MSVC 2013/CDB but would still like to use Qt Creator as the IDE. One of the last remaining issues is that we have a few debug helpers written in Python for GDB for some really opaque internal data…
saeed
  • 2,477
  • 2
  • 23
  • 40
0
votes
0 answers

c++ rhel confd cdb_get returns elements in a weird order

encountring a weird issue with confd. Items are indexed by uint key - when i use configuration with 9 items or lower, everything is ok - cdb_get with index 1 returns the first item, index two the seconds and so on. When i add the 10th item - the 1st…
0
votes
1 answer

Windows port of cdb, TinyCDB

Could you recommend Windows port of CDB, TinyCDB ? TinyCDB does not compile on Windows and requires fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory fatal error C1083: Cannot open include file: 'nss.h': No such file…
Max
  • 6,286
  • 5
  • 44
  • 86
0
votes
1 answer

Oracle 12c CDB Environement dbsnmp user locked. Unable to unlock it as "SYS" user

SQL> connect sys as sysdba Enter password: Connected. SQL> ALTER USER DBSNMP account UNLOCK; ALTER USER DBSNMP account UNLOCK * ERROR at line 1: ORA-01031: insufficient privileges SQL> SHOW parameter pluggable NAME …
Vno
  • 21
  • 1
  • 5
0
votes
0 answers

Oracle 12c cloning resulting in internal error code

I'm trying to clone an Oracle 12c pluggable database from a remote host, but I'm receiving an internal error code with very little to debug with: SQL> CREATE PLUGGABLE DATABASE CLONED_PDB FROM SRC_PDB@RCDB; CREATE PLUGGABLE DATABASE CLONED_PDB FROM…
dpfrakes
  • 103
  • 2
  • 8
0
votes
1 answer

Read and edit .cdb files (Pocket Access) in C#

I need to make a program that can read and edit certain .cdb files (Microsoft Pocket Accesss files, created and used by legacy accounting mobile application). I'd like to do that in C#, using VS2008. It would be great to be able to create both a…
joseignaciorc
  • 304
  • 1
  • 5
0
votes
1 answer

C++ using cdb_read returns extra characters on some reads

I am using the following function to loop through a couple of open CDB hash tables. Sometimes the value for a given key is returned along with an additional character (specifically a CTRL-P (a DLE character/0x16/0o020)). I have checked the cdb…
Moe Be
  • 100
  • 1
  • 8
0
votes
1 answer

sg-cdb Java library for working with cdb database

I have downloaded sg-cdb Java library from http://www.strangegizmo.com/products/sg-cdb/ and included it in my project. I'm trying to read CDB database with the following code: import com.strangegizmo.cdb.Cdb; import…
Ales
  • 527
  • 2
  • 8
  • 24
-1
votes
1 answer

How to convert this sql query to CDB criteria format on YII 1.1

I don't know how to convert this sql query to yii CDB criteria. please give me an idea to to do it. $sql="SELECT ICode,name,Date ,COUNT(*) AS tot, COUNT(case progress when '1' then 1 else null end) AS complete FROM invoice i LEFT JOIN…
-1
votes
2 answers

how can use create command query maker

I have a query like this Yii::app()->db->createCommand("SELECT * FROM `tbl_one` t1 LEFT JOIN `tbl_two` t2 on t1.idea_id = t2.id WHERE create_time >=:t")->bindValues(array(":t" =>$start))->queryScalar(); in yii farme work but dosent…
Sepideh
  • 133
  • 1
  • 1
  • 11
1 2
3