windows phone 7 database [closed] - database

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am developing a windows phone 7 app which will need some basic database functionality. I came across the following projects on codeplex. Has anyone tried any of these projects and can help me decide to choose one, please?
http://rapidrepository.codeplex.com/
http://winphone7db.codeplex.com/
Pratik

We use SQLite since you can design the database ahead of time using standard SQL commands. It works pretty well on the phone.
I've written a quick start guide here: http://wirebear.com/blog/2010/11/12/using-sqlite-in-your-wp7-app
UPDATE:
This was a valid solution pre-Mango but it is NOT what I would recommend now and it is not what we are doing. With Mango Microsoft has given new ways to use SQL CE with LINQ to SQL and is the better way to have a database in your app. A good guide to getting started can be found here: http://www.jeffblankenburg.com/2011/11/30/31-days-of-mango-day-30-local-database/

There also are other databases available for the phone (see Local Sql database support for Windows phone 7).
What's best for you will depend on your requirements:
Do you need anything in particular? transactions? relations or objects?
What's most important? reliability, performance, etc.?

Related

Universal database GUI [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
i need one GUI that will work on windows and i need to connect on several databases. Access, mySQL, MSSQL, Postgres, SQLite and maybe in future i will need connection to oracle.
It would be nice that tool can move database schemas from one db engine to others without lot user interference...
Can someone recomend me tool for this?
Thanks in advance
Try with navicat. It should do everithing you need...
Try on of these:
SQL Workbench/j
Aqua Data Studio
Both work on Windows, Linux and Mac.

Recommendation for a server side language (+ IDEs and Tools) [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I want to create a server that queries another web service every 5 mins and stores the result in SQL database.
I also want web functions exposed that run queries against the database.
Im not expecting a huge amount of trafic and the code should not be too complex. It a small side project.
I do not know much abou servers, I have a little experience with .NET and MS SQL server, however I want something free (or al least cheap!)
What language should I use and what IDE's and tools might I find useful?
I would use ASP.Net, Visual Web Developer Express Edition, and Microsoft SQL Server Express Edition. They are all powerful toolsets, and all free. Also, SO has a lot of questions in .NET for dealing with web services and databases that you can reference as you are developing your project.

Has anyone ever done a comparison between SQL Server and Scimore? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
We are currently investigating using Scimore in place of SQL Server for one of our desktop applications.
The biggest reason is that installing SQL Server is a pain as part of a deployment since we cannot control the target desktop environment. This results in a ton of failed installations due to all kind of reasons.
So, Scimore is what we are looking at right now. Has anyone got any experience in it?
SQL Server Compact Edition is a very nice product. Its mature and deeply integrated with developer studio. But its restricted:
http://msdn.microsoft.com/en-us/library/bb896140.aspx
Scimore has its advantages too.
exactly as you write, then different usage models - in process/out of process/service/distributed.
no restrictions in terms of cpu usages, database sizes, features...
easy deployment, just bundle dll's (<5Mb)

A good database modeling tool for PostgreSQL? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
PostgreSQL comes with the excellent pgAdmin-tool for managing the database but lacks GUI data-modeling utility?
I found this list: http://www.databaseanswers.org/modelling_tools.htm
but don't have time to evaluate them.
Which one do YOU recommend?
pgModeler looks promising: http://pgmodeler.com.br
You might also want to have a look at Power*Architect.
http://www.sqlpower.ca/page/architect
WWW SQL Designer is a great lightweight modeling tool, and it supports PostgreSQL.
SQuirreL also seems nice, I haven't tried it though.
The MySQL workbench is a fine modeling tool that's free, but you'll have to modify the SQL it generates for PostgreSQL.
If you have to pay, ERWin is a standard.
Commercial tools:
dbwrench
Embarcadero ER Studio
I've been satisfied for years with PostgreSQL Maestro. It's a mature solution and easy to use, but comprehensive.

Open Source Database Plugin For Eclipse? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Does anyone know of a good open source plugin for database querying and exploring within Eclipse?
The active Database Exploring plugin within Eclipse is really geared around being associated with a Java project. While I am just trying to run ad-hoc queries and explore the schema. I am effectively looking for a just a common, quick querying tool without the overhead of having to create a code project. I have found a couple open source database plugins for Eclipse but these have not seen active development in over a year.
Any suggestions?
I use SQL Explorer.
It comes as an Eclipse plugin or standalone.
http://eclipsesql.sourceforge.net/
I use Quantum DB, and it seems to work quite well.
http://quantum.sourceforge.net/

Resources