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
46
votes
2 answers

Use a local database in Xamarin

I have started using the Xamarin plugin for Visual Studio to create an Android app. I have a local SQL database, and I want to call it to display data. I don't see how I can do this. Is it possible?
user2631662
  • 855
  • 5
  • 12
  • 21
17
votes
3 answers

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 to be where from within C#, I can create a "local…
adeena
  • 4,027
  • 15
  • 40
  • 52
15
votes
1 answer

How to rename table using SSDT in Visual Studio

I am using visual studio 2013 and trying to learn local database operations. I have created a database using VS and create tables. But I cannot rename table names. There is no such a option anywhere or I cannot see. I searched but find…
Omer
  • 8,194
  • 13
  • 74
  • 92
12
votes
6 answers

DynamoDB client in local with UI like PHPMyAdmin

I am creating web service in zend framework which uses DynamoDB. So I installed DynamoDB in local. But it's not easy to use. Even for inserting data and update any data for testing for purpose I have to write a script. Is there any DynamoDB client…
keen
  • 3,001
  • 4
  • 34
  • 59
9
votes
2 answers

Database file not copied during publishing so installed application throws exception

I am developing a C# windows form application containing a service based data based. when I test my application it's database works fine but after publishing and installing the program when program tries to open sqlconnection , this error appears:…
Behnam
  • 1,039
  • 2
  • 14
  • 39
6
votes
1 answer

Quasar Framework - What is the safest way to store local persistent data (for Web, Cordova & Electron platforms)?

What is the safest way to store data offline, assuming that I want to cover all platforms (Web, Electron & Cordova). The reason I ask is, my app Fudget (which is a Cordova / Electron - but not Quasar) uses WebSQL to store the user's app data…
6
votes
0 answers

Keycloak Synch Registered users into local db

I am thinking of using Keycloak to handle authentication & authorisation of my application. So all the details of roles & users will be stored in keycloak. But I also need to have Users in my local database so I can link this to other tables of the…
nani21984
  • 911
  • 2
  • 13
  • 21
6
votes
10 answers

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 performance issues. I'd like to try and improve…
Mason Wheeler
  • 82,511
  • 50
  • 270
  • 477
5
votes
4 answers

android, save files in offline mode (parse.com)

parse.com provide a way to save object in offline mode with object.saveEventually(); call.. this stores object in local dataStore unless the syncing done with server. the problem is,I can not store file with below given lines ByteArrayOutputStream…
Naveed Ali
  • 2,609
  • 1
  • 22
  • 37
5
votes
3 answers

Best practice to store data locally for web

I'm working on some web application and we need to store number of javascript objects in local storage. Until now we did it using cookies but we want to use one of HTML5 storage solutions because cookies data is send to server on each server call…
Boltosaurus
  • 2,138
  • 3
  • 21
  • 33
5
votes
1 answer

Single user database vs multi-user database

What is the difference between single user database and multiple user database? Why I would need to use a single user database? why it was made? If I have multiple threads accessing the same database on the same time using the same log-in…
Costa
  • 3,897
  • 13
  • 48
  • 81
4
votes
4 answers

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 add and update rows The database only consists of…
Simon Verbeke
  • 2,905
  • 8
  • 36
  • 55
4
votes
2 answers

Connecting the neo4j web client to a local database

I've created a boatload of nodes in my neo4j database and I've been happily querying them. Everything's working great, but I don't see how to get the web interfaced attached to my local database – terminology doesn't seem to be super consistent in…
Ion Freeman
  • 512
  • 4
  • 19
4
votes
2 answers

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 are for web services. Earlier I thought that it…
Vaibhav Garg
  • 3,630
  • 3
  • 33
  • 55
1
2 3
16 17