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

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 I have in my computer (each records has nothing…
Tono Nam
  • 34,064
  • 78
  • 298
  • 470
2
votes
2 answers

How to Export/Import Data from the local database?

I am working on an iOS and Android app which uses a local database for saving the data. Now my client wants to add the export & import data option in the app. So that the user can export data from one device and import it on any other device to use…
Anshul Bhatheja
  • 673
  • 3
  • 21
2
votes
0 answers

indexeddb (IDB) index not working for year field

I'm fair new to indexedDB (IDB) and trying to work on CRUD using jakearchibald's IndexedDB Promised API . I can able to create database and objectStore and indexes as well Creating database createEmptyDB: function () { return new Promise(…
2
votes
1 answer

Cant install visual studio 2017 localdb

I installed Visual Studio Enterprise 2017 with its installer i checked the Data Storage and processing And Sql Server Express 2016 from Individual components So i can have access to LocalDb in my C# app but when installer/modifer finishes it gives…
Azrideus
  • 85
  • 2
  • 13
2
votes
1 answer

get data from local Json file ionic 3

I start a dummy project in Ionic. I try to get data from a local Json file but I have this error : I don't understand why there is no provider for HttpClient. For further details, I actually tried to follow this tutorial :…
Ryley38
  • 99
  • 1
  • 3
  • 13
2
votes
2 answers

Node.js run MongoDB from within application

I am building a component that is consumable by NPM. The application needs to connect to the database. If the user does not specify the details to the database uri in the config files, my application should spin up an instance of mongoDB from within…
Nicholas Mordecai
  • 859
  • 2
  • 12
  • 33
2
votes
2 answers

Store data in local DB using C# Windows Application and make local DB hidden from user

I want to create a C# windows application and store data in a local Database like SQL Express (or any other local DB). Then I want to make local DB inaccessible directly by user and data should be reached only by windows application. In other words…
babak
  • 155
  • 1
  • 1
  • 14
2
votes
1 answer

WPF C# : How to set Dynamic Connection String of SQL Server local database

I want to deploy my WPF project but at the client machine it throws an exception that connection is not able to open. I use a hardcoded string I don't know how to set dynamic connection string which changes at every computer. Someone please guide me…
2
votes
1 answer

Android , Could we use Parse LocalDataStore for local Storage?

As we all know parse server being shutdown, but if i want to use parse local data store concept without any parse server interaction(without calling parse initialize(context,appkey,masterkey)) , then how could we achieve this? Please suggest me if…
2
votes
0 answers

Can not retrieve data from local database after saving it from Parse in ios

I have logged in here with this code and after that a i have saved the data in local DB using Pinning . [PFUser logInWithUsernameInBackground:name password:pass block:^(PFUser *User, NSError *error) { …
Sushrita
  • 725
  • 10
  • 29
2
votes
1 answer

Remote database won't store some strings vs successful local database (MySql - phpMyAdmin)

I have a game created in ActionScript 3 which uses a MySql database / PHP to store and reload the game state between player logins. I have strings(varchars), ints, big ints etc being saved. On my local WAMP server this seems to work perfectly. On…
ruth
  • 21
  • 1
2
votes
2 answers

sql local database connection

I am trying to open my local database in c# with this code : SqlConnection c = new SqlConnection("Server = (LocalDB)\\v11.0 ;Integrated Security=True;Database =Informati;"); c.Open(); But i receive an error when he is trying to open it : Cannot…
user3052078
  • 487
  • 1
  • 8
  • 20
2
votes
2 answers

Read and write utf8 string in microsoft local database

I am writing a WindowsForm application. I am using Visual Studio local database. Every thing is OK, but if I write some UTF8 content in forms, after saving and getting the content again it shows in this form "????". I think there is problem with…
littleali
  • 408
  • 1
  • 6
  • 22
2
votes
1 answer

linq to sql (Local database for Windows Phone) better ? (OR) A sqlite-net version for mobile better ?? for windows phone 8 local database creation

Hi I am creating windows phone 8 app , i want to store huge amount data in my app , i have already completed my windows 8 tablet app using sqlite version for windows 8. my doubt is regarding creating a local datbase in windows phone 8 which is…
2
votes
3 answers

How to create a Local Database in windows phone 8 app?

Hi i am new to windows phone 8 development, I am developing a app which needs to store a large amount of data in local database of the app. 1) Can i know what is the most reliable option to create and store data in local database ? 2) What are the…
1 2
3
16 17