Tagged Questions

2
votes
1answer
520 views

c# silverlight wcf mysql

I have silverlight 4 app. host ASP.NET web app. enabled WCF RIA services. From sever side apach2 php5 Mysql. With MySql connector, ADO.NET Entity Data Model, Domain Service class I have access to ...
2
votes
2answers
289 views

To many EntityCollections in Entity raise “implement IConvertible” exception in RIA Services

I have a Entity object create with the Entity Framework and used in Silverlight with the RIA Services framework. The Entity in question has two EntityCollections which are included in the IQueriable ...
1
vote
2answers
395 views

System.Net.WebClient Problems

I am writing a program that has to access a MySQL database. To do this I wrote a PHP WebService to get all the values in a table. The problem I am having is that I am writing a function in C# to get ...
1
vote
3answers
773 views

Accessing A MySQL Database In Silverlight (C#)

I am trying to access a MySQL database in a Silverlight application. I have tried to reference to System.Data.Services to access the SQLClient class, but it says: You can't add a reference to ...
1
vote
1answer
224 views

Silverlight Localhost on Xampp

I am trying to retrive data to my SL application from PHP, MySQL service which is hosted locally on Xampp. I can see my php file running OK and deliver results via JSON ...
1
vote
3answers
118 views

MySQL from Silverlight on Linux Server

I'm trying to access a MySQL database through Silverlight, and I know you can't do it directly, but the only way I know of is to use a WCF service. This won't run on the server I have, is there any ...
1
vote
4answers
471 views

How might I set up data plumbing for Silverlight to MySQL in my situation?

In short: What is a good method for setting up read-only data access from Silverlight to a MySQL database? Here are the details of my situation: I'm currently trying to set up a Silverlight ...
0
votes
0answers
59 views

Silverlight database connection with Mysql

How can I connect a WCF RIA Business Application edmx file to MySql?
0
votes
0answers
132 views

Need to build a beautiful web application [closed]

Now this is the scenario. We have a desktop based (client-server based) application developed in .NET 4 (WPF) running in a school. This software helps managing all the data (student - staff - parent). ...
0
votes
2answers
150 views

DataGrid and Silverlight

I am trying to develop a silverlight app which needs to populate a datagrid from php. I have the PHP working fine using the JSON format and silverlight can read in the data but how can I add this data ...
0
votes
1answer
147 views

Silverlight and MySQL Problem

I am currently looking into developing a silverlight app with a MySQL Backend however I am having big problems with it. Below is my PHP Code: <?php include("config.php"); $query = ...
0
votes
0answers
63 views

Silverlight Booking Agent Back-End

I am wondering if Silverlight + PHP services + MySQL would be ideal for back-end web application (Booking Agent). Till now i am only seing AJAX+PHP applications. Does this technology has any ...
0
votes
1answer
141 views

Sanitize Silverlight input

Hey, I have a silverlight application that allows the user to modify their username, password, bio etc. This information is stored in a MySQL database and retrieved used a WCF webservice. I need to ...
0
votes
2answers
277 views

Hosting a Silverlight database application that works with MySQL

I have a basic hosting package that gives me access to create a MySQL database. I can of course host silverlight applications on any site. But how can I work with a database from within Silverlight? I ...
0
votes
1answer
314 views

Silverlight with PHP and MySQL: can I send data from the Silverlight app back to the server?

I'm creating a website using PHP and MySQL, and I'm trying to add some Silverlight stuff to the site. I need the users to be able to do stuff in the Silverlight app, and for that data to be saved in ...
0
votes
1answer
443 views

How can I link to a MySQL Database in Expression Blend?

Can any one point me to a tutorial, or tell me how to, connect a MySQL Database to a Silverlight Project in expression blend? Is an ODBC connection like this even possible in Silverlight? Thanks ...
0
votes
1answer
104 views

Silverlight deploy website with db on host not working

i have built (locally) a silverlight website. It uses a mysql database (had to install mysql connector) and a wcf service to contact the db on the server. Locally, everything works fine. However when ...
0
votes
2answers
118 views

Silverlight Application for the web - storing data on site

I've made a little game as an application for the web in silverlight using C#, and I simply would like to save the top ten scores of any of the users that go on it. How can I write to a file and save ...
0
votes
3answers
1k views

Use silverlight to query mysql

I have a silverlight application which reads data from a db and displays them in a grid. As far as i understand it there are two ways to do it. 1) Read db with a server-side language, such as php, ...
0
votes
2answers
635 views

Need help debugging: Having trouble getting data to Silverlight App through RIA Services, Entity Framework, MySQL

I'm trying to build a Silverlight App that accesses and presents data from a MySQL database. I'm trying to use Entity Framework to model the MySQL data and RIA Services to make the data via EF ...
0
votes
5answers
17k views

How to have silverlight get its data from MySQL

I've written a small hello world test app in Silverlight which i want to host on a Linux/Apache2 server. I want the data to come from MySQL (or some other linux compatible db) so that I can databind ...