Archive for August, 2008

SQL Server CE database schema tables

Friday, August 8th, 2008

I’d like to share with people some tables which I found useful for retrieving information about database schema of a database created using SQL Server CE.
In order to access information schema of database you should use a prefix named information_schema. Tables I use to access such information are:

tables - contains information about tables which belongs [...]

My thoughts on RoutedUICommand and how to implement my CustomUICommand

Thursday, August 7th, 2008

Last few days I work on an application of my own. It is a simple application which I’ve started few months ago when Sql CE 3.5 was released. I didn’t find any sql editor at that time. The initial version was enough for me to do some sql statements, execute them and browse the result. [...]

How to: Merge several assemblies in one assembly

Tuesday, August 5th, 2008

Today, a colleague of mine Zlatko run into a problem of how to combine several assemblies into one assembly. He started a discussion with me and we decided that I’ll make a research of the problem. After a short research I found several links with applications which allows to merge assemblies. First of all and [...]