Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm want to save some datas on an online db. How can I connect to an online database (SQLSERVER) on windows phone 8 ?
Thank you.
Dont connect directly to a database from a mobile phone. Use webservices either SOAP or REST. You are opening a can of worms by exposing your database directly to the internet.
Also if you want to expand and include other phones i.e. iPhone and Android to your database then you are going to have lots of different code to maintain.
See this answer Android access to remote SQL database for more information about this.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'm new to Angularjs. I was wondering how can i get oracle database data using Angularjs. Any help would be greatly appreciated.
Thanks,
Sukesh
Angularjs is client side framework based on javascript. There is nothing to do retrieving data from Oracle. It is server side's duty.
You should implement on server side technologies such as .net or php, and give services to client side through web api, rest api etc.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I need to develop a web server using c in Linux. Using that we need to start and configure services. is their any help like pseudo code or sample programs like that.
http://www.gnu.org/software/libc/manual/html_node/Server-Example.html
This is a simple multi-user web server built in C. I had to do one of these last year for a class, and I find it quite cool, though a little bit frustrating.
The Apache HTTP server, the world's most popular HTTP server, is written in C. Its documentation, and source downloads are located here
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to create an asp.net mvc website with One mysql database but i have so good as no idea what I'm going to need..
So my question: how much servers do I need? Do I net an extra server for my database? Do I need any server? Do I need windows or is Linux/Ubuntu enought?
Well I think that's enough!
At the end I have to say sorry for my maybe silly questions but I don't have any idea of that stuff..
Why do you need server.
Server is place where you upload your site and users view the data. Server can be of Linus OS or Windows.
For .NET technologies like asp.net you need windows server.
For PHP etc you need linux.
Mostly the websites on small scale has one server. but it can be increased later on depending on your traffic on site and also size of your application.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a SQLite database hosted in a server, e.g. http://www.webserver.com/database.db
I need to download this database into my phonegap/cordova application, in order to read its data offline.
Practically, I need to "clone" my external database into an internal one.
Please, could someone help me? Thanks.
A few things. First, PhoneGap does not supporting download a SQLite db file and then connect to it. I believe it is possible if I use a native plugin, but out of the box, I can't do it that way.
Solution: download raw data via XHR, i. e. JSON data, and then do imports.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
Wich is the best (and safest) way to implement user login for a silverlight application?
It depends on where your authentication logic resides. If you store your data on a server and you communicate with it via RIA services, then you have access to a built in authentication framework. Here is an example.
If you do communication via plain WCF, then you can still do authentication over WCF in many ways.
Example of using Windows Authentication over WCF: http://msdn.microsoft.com/en-us/library/dd744835(v=VS.95).aspx
For your question: best and safest....Both are good for either server-communication method you use. If these don't seem best to you, you can always write your own security.