Tagged Questions
The local-database tag has no wiki summary.
6
votes
10answers
678 views
Looking for a local database for D2009+
I'm trying to update a legacy app that does all its data storage in a hacked-together system of BDE Paradox files. The program works pretty well, under certain narrow conditions, but it has serious ...
4
votes
3answers
237 views
How to use a local database in c#?
I've made a local database for a C# project:
I know basic SQL commands, but haven't worked with databases in C#.
What I'd like to know specifically is:
How to read from the database (query)
How to ...
3
votes
2answers
40 views
Single User single computer app : Local database vs. database on a sql express
I'm building an application for a client, single user single computer only.
If I use a local database, I want to know if a client would need to install SQL 2008 express edition to run the ...
3
votes
1answer
206 views
window.openDatabase throws SECURITY_ERR in a WebKit-based OSX App
I'm writing a webkit-based osx application with a bundle of javascript files.
I setup the webView like that:
webview = [[WebView alloc] init];
[webview setPolicyDelegate:self];
[webview ...
2
votes
1answer
175 views
using local database to save a variable in windows phone 7
How do I use local database in windows phone 7 to save just a value, then retrieve that value every time the app is loaded (opened)?
2
votes
1answer
346 views
Combining HTML5 localStorage and local Database for more space?
I am developing a web application for remote areas with little internet connectivity and was wondering if I can use HTML5 localStorage with a maximum size of 10MB and HTML5 local Database with a ...
2
votes
3answers
434 views
What is the difference between a Local Database in C# and a SQL Server Management Studio created database?
I'm creating an application with MS Visual C# 2010 Express that requires a database.
I've learned that there seem to be two ways to create/use a SQL database with this application.
The first seems ...
2
votes
3answers
152 views
Need to save a lot of records for my application… should I use a local database instad?
I am about to start developing a "time machine" for windows. I need to store a lot of records in a table. Every time I perform a backup I will write about 50,000 records because that's how many files ...
2
votes
0answers
261 views
Windows 7 Federated Search - How to make it send search requests to my .net assembly
I am trying to display search results in the windows 7 explorer thru the federated search feature, from a local .net assembly. (not from a web service)
I have found various tutorials, but all of them ...
1
vote
1answer
32 views
Will first version local database remain in the new version of iphone application
I am bit concern about the local database I have used in my application.
I want to maintain the data enter by user in the first version of application in second version also.
So i did one exercise in ...
1
vote
5answers
142 views
developing sql application using local database
I am starting an application (c#, .net) that will interact with a Microsoft SQL database. I need the ability for multiple clients to access the data concurrently so I an going to use a service based ...
1
vote
0answers
347 views
Where does Safari save the local database on a Mac? [closed]
On my Windows 7 machine Chrome saves the local database (which I create with some JavaScript) in
C:\Users\[user]\AppData\Local\Google\Chrome\User Data\Default\databases\[website]
I don't have a Mac ...
1
vote
1answer
908 views
Visual Studio Website: Can't create an SQL Database!
I'm using Visual Studio 2008 SP1 with SQL Server 2008.
I'am trying to add an SQL Server File (MDF) in my Website project. Then I get the following error:
Connections to SQL Server files (*.mdf) ...
0
votes
1answer
61 views
send predefined data to browser local storage with .crx
I am building my first chrome extension, for that I want to have some predefined data at client browser.
I want that data be able to be edited by user by means of extension and save back the ...
0
votes
0answers
45 views
My first desktop application, local database, problems to open connection
I am doing my first desktop application in windows forms, and I opened a connection and tried to save a record in my local database (.sdf), it follows the code:
SqlConnection conn = new ...
0
votes
1answer
39 views
Local database of application will be same on updated version of application
I have one application in app store. It has local database where user stores some information. Now I am planning to release the second version of the application. My question is, will the data enter ...
0
votes
1answer
72 views
How to do a SELECT with multiple columns from an SQLCE database?
Because my last question didn't return anything useful, I will have to ask yet another question.
The situation:
I have a local SQLCE database. It contains 2 tables; "Artikels" and "Leggers" (Don't ...
0
votes
1answer
52 views
How to update schema on a local database?
In the next version of my app, I need to update a column from NVarChar(16) to NVarChar(255) on one of the tables in my local database. Currently the column is marked up as follows:
...
0
votes
0answers
30 views
Synchronize local JDerby databases with one remote mysql database
I am building a java desktop application that uses a JDerby embedded database to store all the data locally. The table structures between the local database and the mysql remote hosted database are ...
0
votes
2answers
51 views
How should I store a bunch of data locally to display on a UITableView?
I have to display a lot of text preferably pre-formatted or formatted with NSString methods. Each row will have a detailed screen. In the detailed screen another UITableView will have sections for ...
0
votes
0answers
149 views
Deploying WPF app with local database cache
I created a WPF application that uses SQL CE as a local database cache. When added, the VS wizard performs initial sync. I then modified the sync commands to take a parameter - user id which I store ...
0
votes
1answer
270 views
inserting and deleting not happening in local database (.sdf)
When I try to select values from a local database it executes without any issue. But when I try to insert and delete it's executing the query but it's not affecting any rows.
This is the code i'm ...
0
votes
0answers
164 views
Setting local database cache to synchornize with MySQL on server in Visual Studio 2010
I am trying to synchronize local embedded database (MS SQL Compact 3.5) with remote MySQL db using Local Database Cache in Visual Studio 2010. I dowloaded MySQL Connector 6.3.7, but it doesn't show in ...
0
votes
1answer
188 views
Chrome Extension with Database API interface
I want to update a div with a list of anchors that I generate from a local database in chrome. It's pretty simple stuff, but as soon as I try to add the data to the main.js file via a callback ...
0
votes
1answer
49 views
Local database support Vender
I am just new in Flex/ARI development.
I Want to used local machine database in my one ARI (Desktop) Application,
So which database vender are available for local database support Windows OS, ...
0
votes
1answer
417 views
Dynamic build JSON variable from HTML5 mobile send to Ruby on Rails controller
Client: HTML5 + JS + localdb
Server: Rails3
I'm trying to code small mobile app: the app if a small form that records some contacts info into a local database.
Then when clicking on a Sync button it ...
0
votes
1answer
32 views
MVC .NET Project with LinqToSql- In which project should the local database instance be?
Out of good design practice and organization, in which project should a local development SQL database be in a web based application?
I'm just starting my assignment so I currently have ...
0
votes
1answer
425 views
Using a “local database” with a WPF DataGrid
I'm starting to make some test with .NET 4 / WPF. I made a local database with a table called "Fournisseurs".
Then I created a WPF form, with a DataGrid in it.
Then I wanted to bind my table to it. ...
0
votes
1answer
338 views
Can you return an SQLResultSet with JavaScript from an SQLite database?
I'm trying to create a little plugin that will make working with SQLite databases a little easier. I've got the basic CRUD functions except for selecting data from the database.
I would like to ...
0
votes
5answers
113 views
Software design problem
I have an application which will be distributed to a large number of people within my company. I need to have some central data store for this application and dont have the budget for SQL server or ...
0
votes
4answers
268 views
Leave Win Form Local DB Connection Open?
First up, I understand why it is good practice to close server database connections as soon as possible.
I am developing a program that will contain a local database (5 tables ~ 200 columns), it may ...
0
votes
1answer
1k views
How do I get Local Database files to work in Visual Studio 2010 B2?
In Visual Studio 2008 I can add a local database file (.sdf) and work with it just fine. In Visual Studio 2010 B2, I can add the file, but it doesn't get added to Server Explorer, and when I try ...
0
votes
2answers
404 views
how to develop c#.net desktop base software?
i have to develop desktop base software in C#.Net which only produces reports and that reports can be export to any format. that software will be dump into CD/DVD and distributed to all clients and ...