Jason Short

1,773
Reputation
173 views

Registered User

Name Jason Short
Member for 1 year
Seen 8 hours ago
Website
Location Mount Dora, Florida
Age 38
I am the owner of VistaDB, we build a 100% managed database engine that is compatible with SQL Server and SQL CE syntax.

I am also a father of 2 (see the bio picture) and have been married to my lovely wife for almost 15 years.

Visit my blog for more information about .net programming, databases, and of course VistaDB.

http://www.vistadb.net/blog
1d
comment What are the advantages of VistaDB
Not CLR Triggers or Triggers that can run managed code AFAIK
1d
revised What are the advantages of VistaDB
Added Medium Trust Information
1d
revised Local Database with Silverlight
Silverlight 4 info
1d
comment Local Database with Silverlight
Except it is not the ADO.NET implementation, and is not actually usable. It is a rough port of the C-Lib to C#. So if you want to write to that interface in .Net and do all the mapping yourself it might work, but the last time I looked at the port it doesn't work and probably can't without major rework to support isolated storage concepts.
1d
awarded  Scholar
1d
comment Are table indexes getting replicated to my sqlce database?
We just finished implementing our VistaDB sync providers and reflected the SQLCE providers for sync to see what they were doing. We ran into the exact issue. Peer to Peer does not build all the indexes on the table because it fails to call FillSchema. I will be doing blog posts about it when we get ready to ship our sync provider (4.1 version should include it)
1d
accepted SQL Server 2008 import schema and data from ADO.NET Provider?
1d
accepted SQL Server CE nvarchar foreign keys with trailing whitespace
2d
accepted [LINQ-to-SQL] Does SQL Server Compact (CE) support a RequiresNew transaction scope inside another one?
2d
answered SQL Server Compact Edition - Multiple Subscription issues
2d
answered SQL Server CE nvarchar foreign keys with trailing whitespace
2d
answered Does SQL Compact Edition Support Clustered Indexes?
2d
answered [LINQ-to-SQL] Does SQL Server Compact (CE) support a RequiresNew transaction scope inside another one?
2d
answered CHECK/NOCHECK for Sql Compact Edition
2d
comment SQL Server CE rollback does not undo delete.
Correct - transactions on the connection are not automatically enlisted by all commands being run against that connection. You have to tell the command to participate in the transaction.
2d
answered Are table indexes getting replicated to my sqlce database?
2d
comment Bulk Insert In SQLCE
That is sort of funny though because the MSDN docs state that TableDirect is ONLY supposed to be used by OLEDB providers. Do as I say, not as I do... "TableDirect is only supported by the .NET Framework Data Provider for OLE DB"
2d
comment Programmatically create a SqlCE table from DataTable
You are also now creating tables without their identity column settings, etc. All that is available through a FillSchema call though, so you can build it up dynamically.
2d
comment Programmatically create a SqlCE table from DataTable
Maybe because you said "insert magic" and then said that you don't know how to do said magic... I would downvote because you give advice without knowing how to do it.
2d
comment Inserting 1000s of rows to SQL table using SSMS
Yep, seen that happen many times. See my answer below for how I have fixed it.
2d
answered Inserting 1000s of rows to SQL table using SSMS
2d
comment Inserting 1000s of rows to SQL table using SSMS
His error is correct. The SQL Management Studio (SSMS) is running out of memory and does run .Net code within it.
2d
answered SQL Server 2008 import schema and data from ADO.NET Provider?
Nov
19
comment using c# .net librarires to check for IMAP messages from gmail servers
It appears he has changed his syntax. Instead of calling Authenticate you now call client.Login(_username, _password); And the FetchMessages has been replaced with a Fetch that works very differently. The Lumisoft code is fantastic though, but could use more samples of how to use it.
Nov
11
comment Best logging library for .NET?
I've used Gibraltar and the tools are first rate. Logging is the easy part, now try to use that data in a clear manner. That is where Gibraltar will help you a lot.
Nov
4
comment What is the best keyboard/mouse for ergonomics or to prevent wrist pain?
I have one - it is in a drawer now. The feel is weird, and you have to pick your hand up a LOT higher to go over it than a normal mouse (for right handed people anyway). So I kept knocking the whole thing over when changing from it to the keyboard.
Nov
2
comment Field max length in Entity framwork
Then you don't know... LINQ to SQL is NOT the same.
Oct
30
comment Should I start using VS2010 Beta 2 for development work now?
blogs.msdn.com/kirillosenkov/archive/… plenty
Oct
30
answered Install Visual Studo 2010 Beta 2 beside VS2008
Oct
30
answered Visual Studio 2010 Beta 2 + ClearType
Oct
30
answered How do I connect to MySQL 5.1 in Visual Studio 2010?
Oct
22
comment fork() and child() processes in unix
At the "this is homework" part...
Oct
20
answered How to debug a program without a debugger?
Oct
20
comment MySQL vs SQLite + UNIQUE Indexes
The difference is that MySQL will probably cache everything into RAM as much as possible. Sqlite can't - it is expecting the database to be unloaded all the time (and in fact is when you app restarts). MySQL can rely on being there a LOT longer and cache the data from disk for less I/O overall. Any server system would do this.
Oct
20
comment How can I get some more RDBMS features but still use SQLite?
Maybe the user actually WANTS the stored procs! Maybe they have more than one app using the same database (even as a file) and want to encapsulate the logic into the database...
Oct
20
comment Database engine for a desktop application in C#
He never said it HAD to be free... And VistaDB is a great option to let you run on the desktop, then scale up to SQL Server with the same code. It has T-SQL Procs and other things that SQL CE is missing.
Oct
20
comment Looking for combinations of server and embedded database engines
He mentioned multi user and single user, your site appears to be a new implementation of an idea, not an actual shipping product that someone could use in production today.
Oct
20
comment Looking for combinations of server and embedded database engines
See the Advantages of VistaDB SO thread for more information as well
Oct
20
revised Lightweight SQL database which doesn’t require installation
Added link to other thread covering more information
Oct
20
revised What options are there for serverless databases?
Added link to other thread discussing advantages
Oct
20
comment Password Protect a SQLite DB. Is it possible?
Yep, databases are encrypted with Blowfish and you can merge the provider into your application. Perfect for small embedded applications.
Oct
20
revised What are the limitations to SQL Server Compact? (Or - how does one choose a database to use on MS platforms?)
Updated broken link from site change
Oct
20
comment Alternatives to SQLite?
Just to further update this a bit, VistaDB has 100% type safety (it is C# ONLY code, no com or interop). And yes, it does support ALTER TABLE syntax. See the Advantages of VistaDB thread here on SO for more information.
Oct
20
answered What embedded database with Isolated Storage support can you recommend?
Oct
20
comment What embedded database with Isolated Storage support can you recommend?
AFAIK Sean VistaDB is still the only embedded SQL database engine that support isolated storage... So I think your answer is still a good one.
Oct
19
comment Why won’t Visual Studio 2008 create .mdf files with SQL Server 2008 Developer installed?
Why not just create a database in one of the other 3 instances you have installed and use it? Why bother with a file based connection at all?
Oct
19
comment Why won’t Visual Studio 2008 create .mdf files with SQL Server 2008 Developer installed?
Actually they are not the same (hence the differences). The sort and optimizers are different, multi cpu usage, memory allocation routines, lots of changes. They may be FUNCTIONALLY the same, but are quite different under the hood. The reason the probably don't support them is they perform terribly. It is not a best practice to use them in anything short of demos. File based connections are quite a bit slower.
Oct
17
revised What are the advantages of VistaDB
Added new information about SQLite supporting FK's
Oct
17
comment What are the advantages of VistaDB
SQLite FK enforcement is disabled by default. From their site "the library must be compiled" that means it depends upon the BUILD even, and then you have to enable it as well. If I wanted to maintain the code and build it I would have built my own engine (oh wait, I did... VistaDB - nevermind)
Sep
25
accepted When is it acceptable to break CLS compliance?