SDF : spatial Data Files
0
votes
1answer
60 views
MapGuide open source : manipulating SDF data via java/jsp?
I am relatively new to MapGuide open source technology. I would like to parse and modify data that is in SDF format so that my map displays this updated feature data (dynamically). How can i do so? I ...
0
votes
2answers
72 views
parsing sdf file, performance issue
I've wrtien a script which read different files and search molecular ID in big sdf databases (about 4.0 GB each).
the idea of this script is to copy every molecules from a list of id (about 287212 ...
2
votes
2answers
125 views
Login Page C# .SDF
I am trying to create an application that allows a user to log in using .sdf, there is not much on the internet about this !
Could really do with some pointers.
This is what I currently have but I ...
2
votes
2answers
417 views
c# DataTable, deleting added row
have some problem with DataSets in c#, which represents structure and data of DB in sdf-file.
I'm making some automatic test with DB, so I should add some rows in table, perform test and delete added ...
0
votes
0answers
46 views
How to read from SQL Server Compact Edition file (SDF+Java)?
Can anyone tell me how to read data from a .sdf file in Java.
Is there any driver compatible for this in Java?
0
votes
0answers
167 views
How to connect dbml with the database?
Hi I am new to database concepts and database related programming. Now I want to create a local database in my application. I am using Visual studio 2012 for simple adesktop based application. I have ...
1
vote
0answers
77 views
Why is SQL CE Toolbox failing to parse my csv file?
SQLCEToolbox looks very promising.
I installed it, opened VS 2012, selected Tools | SQL Server Compact Toolbox, quickly and easily set up a connection to my sdf database, which I had (also quickly ...
0
votes
1answer
64 views
How can I determine what version SQL Server Compact a table is?
I have some .SDF tables that are created in a Windows CE app (Access table data is passed from a server app, and this is converted into SQL Server Compact records/tables).
I want to look inside them ...
0
votes
1answer
162 views
Get real-time data from SQL Server Compact databases
How to get real-time data from SQL Server Compact databases (*.sdf file) using Visual Studio 2010, WinForm, C#.NET, .NET Framework 4.0 to update Controls (Label and DataGridView)
Thanks
CodeGhoib
-4
votes
1answer
134 views
Reading .sdf file in java to run on linux [closed]
I have a requirement to convert the SQL server CE .sdf file to delimited text files.
Input that i have:
example.sdf file. This has 3 tables (table1, table2 and table3) with
varied number of ...
0
votes
1answer
485 views
Creating and utilizing a local database in Visual Studio 2010
I can't seem to find any straight-forward guides on how to create a windows forms application with C# .NET in Visual Studio 2010 that uses a local database. When I create the local database, a .sdf ...
0
votes
1answer
383 views
How to insert into my sql table in wpf using Dataset
I was wondering what would be the best way to insert a row into my sql table through WPF application window.
I have two wpf DataGrids in my application, and I want the user to be able to push a button ...
0
votes
4answers
134 views
Using int.parse(string) in linq search doesn't work
I'm using LINQ search in C#. One of my searches require converting a string to an int.
When I try to use int.parse() or convert.toInt32(), it displays an error (not recognized in LINQ)
for example:
...
1
vote
0answers
514 views
SimpleMembership with SQL Server Compact (SDF) - code first with existing DB
probably I'm missing something obvious but I cannot manage to get an SDF-based ASP.NET MVC 4 web app work with the new simple membership. I detail my steps so this can be useful as a reference for ...
1
vote
2answers
209 views
How to use SqlCeParameterCollection?
I wanna to know exactly how we do these thing on C# .NET 4.0 Form Application :
Declaring SqlCeParameterCollection Object
Adding Parameters to the collection
Add the Collection to the Command
...
1
vote
2answers
346 views
data isn't inserted in database
Data isn't inserted into database from my C# app, but there's no error or exception found. But I can read the data from database using select statement and data reader.
private void ...
1
vote
2answers
418 views
Clean sdf database file
I have a filled sdf database file, I need to clean every record of tables
But if I will do it by my hands, Primary keys will not start with 1 after add record in table. And records will create with ...
0
votes
1answer
404 views
.MDF / .SDF Database Client Software Requirement
I have developed a program using VB.NET running with mysql (.mdf/.sdf) database file. It's definitely running well in my development machine.
Now I have compiled and come out the .exe file that want ...
2
votes
1answer
888 views
VB.NET - Local database (SQL Server Compact 3.5 database) data gone after update?
I have created an application in VB.NET (using Microsoft Visual Basic 2010 Express) with a local database (SQL Server Compact 3.5 database) to store data.
I have installed this on the users computer, ...
0
votes
1answer
152 views
Need help developing SQL query
I’m trying to develop a SQL query to help me extract some data from my ASP.NET based website. I'm working on a SQL compact database (sdf) on my ASP.NET based website using WebMatrix.
I’m trying to ...
0
votes
1answer
423 views
Switching from SQL Server Express to SDF database
I've created an mvc project with following connection string (which is a default):
<add name="TestDb"
connectionString="data source=.\SQLEXPRESS;Integrated ...
0
votes
2answers
660 views
How To Edit .sdf file
I have my application and I install a .sdf file and I add columns to my database. So how do I update my database without losing my Data?
0
votes
1answer
105 views
Optimizing SDF filesize
I recently started learning Linq and SQL. As a small project I'm writing a dictionary application for Windows Phone. The project is split into two Applications. One Application (that currently runs on ...
1
vote
1answer
462 views
using sdf database file for multiple users
Can I use sdf file as a database for a small website,where multiple users can access it in the same time,or sdf is just only for single user
1
vote
3answers
212 views
Sdf file always being created as read only after installation on Windows Mobile
My windows mobile app has a local database file (database.sdf). The file that is created when the user installs the CAB file in their device. The installation works fine but when I try to open the sdf ...
0
votes
1answer
230 views
How can I programmatically get a workitem “integration build” field value
I having currently implemented the isubscriber interface so to be able to detect when a workitem has changed. I notice that when a cast the event to a workitemchanged event that there is refernce to: ...
0
votes
1answer
794 views
DataSet changes to sdf local database
I created .sdf database in my project.
DataSet for my base was created. So i'm using this DataSet object, and add new rows to tables using DataGridView.
Then I want to save all my changes back to ...
0
votes
1answer
111 views
SDF (SearchDataFormat) Requires Atypical JSON
Using Jackson to interface to Amazon CloudSearch, which ingests data in the format SDF. Here is an example:
[ {
"type" : "add",
"id" : "images_to_search_csv_1",
"version" : 1336526759,
"lang" ...
1
vote
8answers
2k views
Create .mdf/.sdf file dynamically
How can I with "code" create a new .mdf/.sdf file?
I've tried this:
http://support.microsoft.com/kb/307283
All it does is fail on the ConnectionString. Since I have no connection to a file that ...
0
votes
1answer
237 views
ASP.net Web Page Database error
Hi here is my cshtml code:
@{
var db = Database.Open("SiteDB");
var sqlQ = "SELECT * FROM Favorite";
var data = db.Query(sqlQ);
}
<div id="movieslist">
<ol>
...
1
vote
2answers
520 views
Data disappearing from sdf database in C#
I'm running some experiments to grasp the concept behind managing databases in C# an Visual Studio. What I did was creating a simple sdf database with just one table "Books", consisting of two ...
1
vote
2answers
481 views
sdf file not showing in App_Data (using MVC application)
I followed the "Creating an Entity Framework Data Model for an ASP.NET MVC Application" in ASP.net and changed it to meet my needs.
I built the project and run it - everything works fine (I can view ...
0
votes
1answer
539 views
How do I display Reports from a Local Data Source (sdf) on a Crystal Reports Viewer?
These are the steps I followed,
1). I created a WinForms project
2). Added a 'Local Database' (Databased.sdf file as local storage)
3). Added demo data to the database.
4). Created a dataset out ...
-2
votes
1answer
746 views
How can Synchronize .sdf Database to .mdf Database & .mdf Database to .sdf Database?
I have a project running on the tablet device which has sdf file as database. Now the database is set into the server for normal devices(Pcs), how can i sync data between sdf file and mdf file(server ...
1
vote
5answers
2k views
convert .sdf file to .mdf
I have this sql ce database (with more tables and data) which I would like to convert to SQL 2008 because I want use it in Server(application need to used by many), I am using SQL 2008 express; and c#
...
4
votes
1answer
503 views
How do I efficiently store all OpenStreetMap data in an indexed way?
Note: While I target Windows Phone 7, it doesn't introduce anything besides a size restriction.
In an attempt to write a GPS / Routing / Map application for the Windows Phone 7, I'm trying to attempt ...
2
votes
1answer
172 views
How to store a SDF file at client machine via web application?
I need your valuable inputs for my web application.
see, the thing is i need to store a SDF database so that i can track the user in which machine
he has activated the Product.
if a user activated ...
0
votes
2answers
1k views
Set connectionstring Entity Framework
I have built an application that uses SQL Server Compact 4.0 (.sdf) for data.
The user should then be able to save and load .sdf files into the application.
I've been able to build an method that ...
0
votes
1answer
266 views
Load and save .sdf at runtime
I'm building an C#-application that uses an SQL Server Compact 4.0 database (.sdf) with Entity Framework for data. I want to be able to load/save-files from within this application so that the user ...
2
votes
3answers
6k views
Cannot open .sdf files in SQL Server Management Studio 2008 SP3
Has made a .sdf database file in Microsoft Visual Web Developer 2010. When I try to open it in SQL Server Management Studio 2008, service pack 3 displays error message:
Cannot connect to ...
0
votes
1answer
353 views
C# application publish - errors on different systems
I've made an application in C# . it's a WPF application with SDF DB.
I have VS2008 express.
I published my application (with SQL-CE dll) and installed it on my computer (I have windows XP) and on ...
1
vote
3answers
608 views
Copy table content to another table in the same database with C#
Copy table content to another table in the same database with C#
I got one database (Baza) with some data in two tables NEW and OLD. I need to periodically move NEW data to OLD data table (after I do ...
0
votes
0answers
446 views
read a .sdf (SQL Server CE) in php
I have a file called PhotoGallery.sdf and was wondering how to connect to this db with php, or if it is even possible?
Maybe point me to the right documentation. I found query strings for this, but ...
0
votes
1answer
1k views
Copy a SQL Server Database to .SDF file using C#
I have a SQL Server running on my local network, and want to be able to check out a local copy of it as an SDF file to work with on the move. Is this possible to do in C#?
0
votes
1answer
293 views
Compare two .sdf files in .Net
I am working on windows application from where user will be able to get the backup of .sdf file and later user will be able to restore the .sdf file.
Before file restoring file from my .Net ...
0
votes
3answers
1k views
Database file .sdf does not update after closing application
I am creating a Desktop application using Microsoft Visual Studio .NET 2008. I am using a .sdf file as my database. My problem is that when I am making changes to my records (add new, deleted, ...
0
votes
1answer
265 views
Determine if SDF is encrypted
Is there any way to determine, before connecting and having an exception thrown, if an SQL Compact Edition SDF has password encryption?
After selecting the file in an Open File Dialog, I want to ...
2
votes
2answers
731 views
Using an SDF file (SQLCE database) with a custom extension as my WPF application's data file type
I'm building an application in WPF (.NET 4)
My application creates, opens and saves data files with a custom extension (I'll refer to them as .myapp files for clarity here). I'm using an installer ...
1
vote
2answers
236 views
Search multiple SDF files
I have a process that backs up my remove SQL Server database to local SDF (SQL CE) database files daily.
What I need is an easy way to search across multiple SDF files. For example, suppose I want ...
0
votes
2answers
420 views
SDF file creation for window mobile 6.5
I create a vs 2005 project and a sdf file using ms sql server express 2005. And I try to connect it in MC65. I got this error
The database file has been created by
an earlier version of SQL ...

