I am trying to migrate a database, but I cannot find which database it is.
The database files are like the following:
FILE001.DAT
FILE003.DAT
FILE004.DAT
.
.
FILE093.DAT
FILEM02.DBT
FILEM05.DBT
.
.
.
FILEM21.DBT
SYMBOLS.IDX
SYMBOLS.DAT
There are .DAT, .IDX and DBT files.
How can I read the data and database schema from these files;
I am looking for a lightweight set of C++ classes that implement/show how to use the MVP design pattern, so that I can refactor some legacy code I am working on.
A library/framework would be nice to get me started. A quick google search seems to bring up only C# examples - is anyone aware of any C++ ones out there?
[Edit]
I am particularly interested in a Passive viewer, as I want to completely decouple the view from the model.
I'd like to implement a product support site in ASP.NET that will contain at least a forum and a knowledge base(FAQs). Could you recommend some good starting points?
Thanks
I've tweaked my code in Xcode after Shark complained about some performance bottlenecks. However, Sharp seems to cache that code and keeps showing me old aged stuff. Even after several builds and re-tries. Probably I must activate some fancy function that says "never cache anything" like in web browsers?
The official examples of exposing a Point class seem to assume that there will be a fixed number of instances of it in your program. It is not clear how new instances are allocated in the C++ code, when new is called in Javascript.
How would you expose a class that can have multiple instances? For example, an Image class:
var img1 = new Image( 640, 480 );
var img2 = new Image( 1024, 768 );
img1.clear( "red" );
img2.clear( "black" );
I was looking at using iText to create both a pdf and html version of a document with RTF as a possible option. According to this question this is no longer possible with iText. Is there a library that will allow me to create a document in Java and output it as both PDF and HTML? The ability to output RTF would be nice but is not required.
What is the best way to build a mySQL & PHP search?
I am currently using things like
%term%
I want it to be able to find the result even if they spell it slightly wrong, for example:
Field value = "One: Stop Shop:
They search:
One Shop Stop
OR
One Stop Shop
Etc.. I want a really smart search so they find the information even if they don't search the exact thing.
What is the best way to build a smart search like this?
I'm trying to run down when a particular bug was created, but wading through the history is pretty time consuming. Is anyone familiar with a command line method to get a list of revisions where a line or range of lines changed?
svn and vault evangelists: I know, right....but you can't always pick the environment....
I find that I now often work with code bases that have different amounts of indentation. Some use 2 spaces, some use 4 space, some even use tabs! Once in a while, I have to share code between these codebases, or, sometimes I use an incorrect amount of indentation by mistake. Is there a tool or a text editor feature that will convert between different amounts of indentation?
I have the command language part sorted out, I'm looking for good sample on how to build a custom console in Cocoa. Need features like copy/paste, command stack, ctrl-z processsing etc. Thanks in advance.
I don't remember which blog I was reading, because it seemed academic at the time, but there was a library being discussed where you could take a two concrete classes and bind the properties together if the names matched. Think ASP.NET MVC model binding.
Most of the applications that I'm finding, inncluding LiveHelp and PHP Live Chat! feature terrible, un-commented, non-cross-browser compatible Javascript.
I'm looking for chat software that uses a Javascript framework to avoid some persistent and common bugs related to the DOM.
I'm trying to debug what appears to be a completion queue issue:
Apr 14 18:39:15 ST2035 kernel: Call Trace:
Apr 14 18:39:15 ST2035 kernel: [<ffffffff8049b295>] schedule_timeout+0x1e/0xad
Apr 14 18:39:15 ST2035 kernel: [<ffffffff8049a81c>] wait_for_common+0xd5/0x13c
Apr 14 18:39:15 ST2035 kernel: [<ffffffffa01ca32b>]
ib_unregister_mad_agent+0x376/0x4c9 [ib_mad]
Apr 14 18:39:16 ST2035 kernel: [<ffffffffa03058f4>] ib_umad_close+0xbd/0xfd
Is it possible to turn those hex numbers into something close to line numbers?
We would like under some circumstances to block the action of the close button in the title bar. The problem is that it's a MDI applications and it seems that we will have to add code in each forms to cancel the operation in the Closingevent handler. It seems that the child forms are the first to receive the event. There is no way to add code at a single place to cancel the close operation. Information on how the close event is propagated to the child form would be welcome. Is there a simple way of doing what we want to do?
Hello,
I want have RRA with one measurement = 5min. period. The Y axis displaying total number (not average) of registrations during last 5 minutes. Also, I want graph with information about total number of registrations (Y axis) per day (X axis).
What DS type and RRA "algoritm" shoud I choose to implement this?
Thank you
I've try many CMS flavors like MODx, Drupal, Joomla for the admin Panel but they can't seem to manage my existing data, like the users.
Im planing on building a admin Control Panel for my site and i was wondering if there is something out there which i can start working with instead of starting from scratch.
UPDATE:
To do simple tasks like:
Managing my users
Managing my content( the site is an image sharing site, so in this case images)
I was looking more into a graphical interface more then a system as i have lots of costume content and data like the users.
I want to determine which compiler is better on 2 different platforms. First, I want to know whether sunCC or GCC generates fastest code in a Solaris system. Then, I'd like to know whether aCC or GCC generates fastest code in a HP/UX system.
Thanks.
Why are there not more opensource easy to use charting libraries for Java?. The only successful opensource project in this area seems to be jfreechart, and it doesn't even have any documentation or examples available.