How to create a password protected DB in SQLiteStudio - sqlitestudio

Does anyone know how to create a password protected file in SQLiteStudio 3.1 ?
When I try to make a DB with type SQLCypher, trying to follow the steps in the youtube guidance, I allways end up with a file I can connect to, even without a password.
Can't find any usefull manual for this.....

When you create database, pick SQLCipher plugin, enter password. Newly created database should appear on the list of databases. Now just double click on it and it should open with no issues.
Unless you mean you cannot open it from different application?

Related

Secure way to store database connection string in heroku

I have an open source project on github, and I want to know a way to store my database's connection string without sharing it within the code.
Maybe uploading a file that is not on git, with the credentials. Is it possible on Heroku? If not, how do I achieve this?
Thanks in advance
That's what config vars are for. Set one, and it will be available to your app as an environment variable. It lives outside your code base, as you (rightfully) want.

Trouble shooting Oracle Form Builder error FRM-10044

I'm trying to create & save a new form using Oracle Form builder however, I get the error FRM-10044: Cannot create file.
The same thing happens when I open and save an existing form (.fmb)
I've check the folder permissions where the form is being save, it has read write access.
I've tried saving it into a differ folder and also tried creating a new folder but it still throws the same error.
I'm able to create and save a word, excel document in the new or existing folders (as mentioned-above) without any issues.
I suspect it could be something to do with the Windows Registry or System Configuration settings because I had recently shutdown/disabled so of the services in the System Configuration (using
msconfig.exe). Unfortunately, I don't remember all the options that were modified.
I've gone through numerous discussion forums, but still no luck.
Any help is appreciated.
Thanks in Advance
I've experienced the same thing. But in my case, i compiled the form on server side. The error appeared because it was remote-controlled by more than 1 person. One of the remote session was possibly locking the file creation. So I logged off the other session and try to use 1 session only when compiling the form. This happens sometimes when we're using an OS with multiuser and multisession capability.

Where to store SQLite file from app user

In my project I have stored my sqlite(DB file) file in Document directory and also set UIFilesharingMode - NO , but now user can able to acces the file using Xcode->orginizor and also he can able to modify in table and able to change the data in that dable .
My requirement is, how I can hide or restrict user to not access that file.
If any one have any intelligent idea please share me.
Thanks.
You have to use encryption. There's no way to prevent someone accessing Documents folder and there's nowhere for you to store the sqlite file.

Import data from an Access database into Word

I have created a program that runs off of an Access database on the company server. The program is running fine and I am about to release it to the office. Before I do this I would like to write a help file in case the users run into issues. However, I am running into problems here. In the program, each user has a security level that is retrieved from the database that allows them to have access to different features in the program. I would prefer that only certain users know about some of the features. In writing a help file for all of the features, I would like to have Microsoft Word read the security level from the database and only display the portions of the help file corresponding to the features the user has access to. I have tried using the following VBA code in the Document_Open event:
Set db = OpenDatabase(databasePath, False, False, databasePassword)
But I get an invalid password error (the database is password protected). I have verified the correct password several times now and still no luck. Does anyone know what I am doing wrong? Is there some other way to connect to an Access database using Word?
Why not include the help in a table with a rich text memo? Each section can be contained in a different record.
When creating such a table I generally have a help button that opens the relevant section and an extra field to allow annotation.

SQLite Connection String for iPhone Application in C#

I am trying to learn iPhone App Development using MonoDevelop and C#. I have created a sqlite database file userinfodb_v1.sqlite and placed it in a subfolder called Data in my project. Now I am trying to write the connection for the application to fetch data from the tables. I haven't got much clue as to how I should form the connection string as I have only about started. This is what I am doing:
string strconn=Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "Data");
scon=new SqliteConnection(strconn);
scon.Open();
However this is not working as the connection is failing. What should I do to establish a connection? Where is the error in my code? Can you help me correct it? Any help will be massively appreciated. What does Environment.SpecialFolder mean? Where should I keep the database file in order to access it properly?
Many Thanks in anticipation.
When your application starts you need to copy the database file from the bundle to the Personal folder.