Database

  • Thread starter Thread starter Marcos de Lima Carlos
  • Start date Start date
M

Marcos de Lima Carlos

I am developing an application in windows form VS 2005 and it would like
to know if a database that supports text exists and that it doesn't have
to install any bank in the windows. Does the windows have some native
support the database?Some exists middle inside of creating the opening
of files of own VS2005 without the drivers need?

tks,

Marcos
 
I am developing an application in windows form VS 2005 and it would like
to know if a database that supports text exists and that it doesn't have
to install any bank in the windows. Does the windows have some native
support the database?Some exists middle inside of creating the opening
of files of own VS2005 without the drivers need?

Are you looking for an embeddable database?

You can embed Firebird Database into your app - it's about 150K.

Microsoft Access is OK too, and I think MS JET is installed on almost all
machines.

Or you can use SQL Server 2005 Express Edition... .NET includes native SQL
driver (part of NET distribution).
 
Spam Catcher escreveu:
Are you looking for an embeddable database?

Yes. I am developing an application for text research for words. This
application should have an only file where it will be made the research.
I have about 1000 word documents with 5000 characters each. I will need
the application to return me in that document contains the word and the
paragraph that it contains the word (context).
You can embed Firebird Database into your app - it's about 150K.

Microsoft Access is OK too, and I think MS JET is installed on almost all
machines.

Or you can use SQL Server 2005 Express Edition... .NET includes native SQL
driver (part of NET distribution).

Does some exist sorts things out of creating the own database?

tks,

Marcos
 
Yes. I am developing an application for text research for words. This
application should have an only file where it will be made the
research. I have about 1000 word documents with 5000 characters each.
I will need the application to return me in that document contains the
word and the paragraph that it contains the word (context).

Does some exist sorts things out of creating the own database?

I don't get what you mean by "creating the own database"? So you don't want
to use a database?

You can take a look at DTSearch - it can do full text search on a
filesystem of various document types. It's not cheap tho :(
 
Back
Top