Questions tagged [local-database]

This tag would be for cases where a database is accessed locally, not over a network.

This tag would be for cases where a database is accessed locally, not over a network. For example, an SQLite database used by a mobile app.

252 questions
4
votes
2 answers

Creating and utilizing a local database in Visual Studio 2010

I can't seem to find any straight-forward guides on how to create a windows forms application with C# .NET in Visual Studio 2010 that uses a local database. When I create the local database, a .sdf file, I can't figure out how to have my form access…
Alex
  • 671
  • 3
  • 11
  • 25
3
votes
2 answers

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 application? Where is the local DB located (for backup…
Kunal
  • 61
  • 1
  • 11
3
votes
1 answer

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 setFrameLoadDelegate:self]; [webview…
3
votes
1 answer

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)?
Nghia Nguyen
  • 2,585
  • 4
  • 25
  • 38
3
votes
1 answer

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 maximum size of 10MB for a total of 20MB of offline…
madmod
  • 189
  • 1
  • 3
  • 9
3
votes
1 answer

Is it possible to have local database file used by Electron Framework?

i am trying to build simple desktop application using Electron Framework. I have created database using MySql Workbench and now im stuck actually connecting it. I want it to be able to run locally, offline, which means each instance of application…
dmahnet
  • 53
  • 1
  • 5
3
votes
1 answer

How do I display the data of the "current user"?

I am a high school student who's still pretty much a beginner in C#. I am making a library management system (for books) that includes a database (sql local database in visual studio(?)) for users. I have a form wherein users can view the data they…
aii
  • 31
  • 3
3
votes
1 answer

SQL Local Database not connecting on other computers

I have a problem that I have been researching for the last 2 days. I have a program I wanted to give to a friend. It uses a MDF local database file. But once he installs it on his computer, it gives a sql 50 error (Error 1). I have installed…
Kevindt12
  • 109
  • 1
  • 10
3
votes
1 answer

How to connect to remote DB in local phpMyAdmin (WAMP)?

I'm using WAMP server with MySQL Version : 5.6.17. Is there a way to connect to remote DB from my local phpMyAdmin? I have credentials for remote database, but I can not find a way how to add a connection in my local panel. I found over the new that…
delux
  • 1,694
  • 10
  • 33
  • 64
3
votes
1 answer

how to synchronize between local database and Parse in android?

I am using parse for chat application in android for storing the data I am using both the server and local database(Parse.enableLocalDatastore()) it is working fine, the problem is with fetching data from the database like if network is not…
Aashish
  • 91
  • 1
  • 5
3
votes
1 answer

Insert into a local Sql Server CE don't insert

Hi I have A local database named Database1.sdf. I´m accessing it with following code to insert some data into a table: public string DoLocalDbCmd(string Command) { int NumeroAffetto; string ConnString = @"Data…
Piercarlo
  • 335
  • 1
  • 5
  • 14
2
votes
1 answer

Local Database Windows Phone 7

I've created a local database for my Windows Phone 7 app and I created one table using the tutorial on msdn. I have a problem with a second table how do I add it ? When I make another class with Linq do I need to use the same datacontext class and…
Kanga
  • 125
  • 12
2
votes
0 answers

Objectify 5 to connect the local datastore emulator in java project

I have to connect java appengine project with local datastore emulator in gcp. ObjectifyService.init(new ObjectifyFactory( DatastoreOptions.newBuilder() .setHost("http://localhost:8484") .setProjectId("my-project") …
2
votes
0 answers

C# Desktop Application

I built a desktop application using local database mdf and ldf file. When I test my application via complete installation process in other machine which has no SQL management software installed. I am getting an error 52. I see that after…
2
votes
1 answer

Download Sqlite file from Google Drive swift

I upload a sqlite database to google drive. And now I would like to download it. So I tried to download it from Google Drive to my Swift Project but it is being downloaded in GTLRDataObject Data format. How can I get the file into sqlite database…
Maulik Patel
  • 23
  • 1
  • 4
1
2
3
16 17