pdb2mdb(1) General Commands Manual pdb2mdb(1)NAME
pdb2mdb - Program Database to Mono Debugging Symbol converter.
SYNOPSIS
pdb2mdb pdb_file
DESCRIPTION
This tool is used to convert debugging symbols generated by Microsoft's compilers into debugging symbols that can be consumed by Mono's
runtime.
Program Database files are files that end with the extension .pdb and are associated with a library or executable (a .dll or .exe file).
This format was until recently not documented so Mono used its own file format for storing debugging information, the Mono debugging for-
mat.
Just like PDB files Mono Debugging information is stored in files that reside side-by-side with a program executable or a library.
You can use the pdb2mdb tool to transform these PDB files into MDB files that Mono can then consume to debug programs or provide line-num-
ber information for stack traces or exceptions.
LICENSE
The pdb2mdb tool is released under the terms of the Microsoft Public License (MS-PL). JB Evain wrote the tool. The PDB reading support
came from Microsoft Common Compiler Infrastructure.
SEE ALSO mono(1), mdb(1)WEB SITE
http://www.mono-project.com
23 April 2009 pdb2mdb(1)
Check Out this Related Man Page
pdb2mdb(1) General Commands Manual pdb2mdb(1)NAME
pdb2mdb - Program Database to Mono Debugging Symbol converter.
SYNOPSIS
pdb2mdb pdb_file
DESCRIPTION
This tool is used to convert debugging symbols generated by Microsoft's compilers into debugging symbols that can be consumed by Mono's
runtime.
Program Database files are files that end with the extension .pdb and are associated with a library or executable (a .dll or .exe file).
This format was until recently not documented so Mono used its own file format for storing debugging information, the Mono debugging for-
mat.
Just like PDB files Mono Debugging information is stored in files that reside side-by-side with a program executable or a library.
You can use the pdb2mdb tool to transform these PDB files into MDB files that Mono can then consume to debug programs or provide line-num-
ber information for stack traces or exceptions.
LICENSE
The pdb2mdb tool is released under the terms of the Microsoft Public License (MS-PL). JB Evain wrote the tool. The PDB reading support
came from Microsoft Common Compiler Infrastructure.
SEE ALSO mono(1), mdb(1)WEB SITE
http://www.mono-project.com
23 April 2009 pdb2mdb(1)
I'm in the UNIX environment. I'd like to read a Microsoft Access MDB file, and write the contents of that file into an ASCII text file. I want to write a C program to do this.
Does anyone know if there's already source code out there that does this?
Please advise. Thanks. (3 Replies)
I have made use of 'valgrind' and -finstrument-functions compiler option for debugging / analyzing code. Both the options lets us know the line / file being executed to some extent.
Is there a generic way that lets program dump the file:line it is getting executed dumped to a log file during... (3 Replies)
hi folks,
I am a new to Aix, i worked as sys admin so no idea about software probs, my software team requires Debugging tool for cobol in AIX machine.
can someone tell me the tool and also the installation procedure for the same
Please drag me out from this soon :confused: (1 Reply)
I'm running CentOS 5.5 and Mono 2.10 on a VPS in which I have root access too.
I have a large java app that is set to use no more than 3GB of ram where I have 4GB of ram in total.
I have another app that has to use Mono but it ends up using up all the physical ram and running into the swap... (3 Replies)
Hi,
We have recently implemented lpar2rrd tool to monitor CPU usage in our company but now they are are asking if it is possible to monitor Database and memory usage and have it output the data on a graph as well. The memory part I know it is possible I am just not sure how to implement it.... (1 Reply)
Hi
I have a open source tool called table text comparator
Link to download that tool: http://www.nirsoft.net/utils/csv_file_comparison.html
I wish to run this tool in our unix servers. In windows O.S i just have to unzip and i can use this tool by running the .exe file. So i want to know how... (6 Replies)
Hi,
I see files with .hq extensition on my system, these are updating runtime in my project, however i am unaware what complete information it has, Is there a way I can convert these files to readable format. Some words are visible in file and makes sense too, It seems its the information on... (5 Replies)
Ubuntu, Bash 4.3.48
Hi,
I have this input file:
a1:b2:c30:g4:h12:j7
and I want this output file:
a1=g4:b2=h12:c30=j7
I can do it this with this code:
awk -F':' '{print $1"="$4":"$2"="$5":"$3"="$6"}' INPUT > OUTPUTIn this case I have 6 columns, I calculate manually the half number of... (6 Replies)