Is it possible to create a VistaDB database programmatically using C#. My requirement is that I have a SQL Server database with some thousand rows and I want to programmatically create the same schema and export some hundred rows to an embedded database like VistaDB and ship to the client. I know I can use VistaDB data migration wizard, but I need to do it programmatically using C# ( because it is the client who will do the data export thing).
create and fill VistaDB database programmatically using c#
1k views Asked by jeff At
1
There are 1 answers
Related Questions in C#
- Add additional fields to Linq group by
- couldn't copy pdb file to another directory while consuming wcf web service
- Why are the aliases for string and object in lowercase?
- WPF MessageBox Cancel checkbox check
- Resolve object using DI container with object instance
- Creating a parametrized field name for a SELECT clause
- Does compiler optimize operation on const variable and literal const number?
- Get data from one form to another form in C#
- Writing/Overwriting to specific XML file from ASP.NET code behind
- Deleting Orphans with Fluent NHibernate
Related Questions in DATA-MIGRATION
- Unpivot dynamic table columns into key value rows
- How to transfer a structure from one Plone to another
- MySQL structure migration
- What is causing my images to corrupt during FTP transfer to Go Daddy server?
- Django 1.8 How Drop certain tables using manage.py?
- Insert rows returned by stored procedure into a different table - different databases and servers
- Netezza to SQL Server Data migration
- Oracle Data Migration best usage in isolated servers
- App install, with a change in the Core Data model
- accessing model manager methods in datamigration
Related Questions in DATABASE-MIGRATION
- Database Migration Approach
- PostgreSQL migration and restore
- Oracle to SQL Server Migration issue - On delete cascade
- Entitiy Framework migration with EF in multiple projects
- Alembic SQLite ALTER TABLE with self-referencing foreign key
- Migrate multiple databases with Propel
- Django migration having no effect, on postgres table
- Running migrations with Rails in a Docker container with multiple container instances
- How to take data from one model field to another in Django using fixture?
- Stale content type prompt deleting all model instances after renaming django model with permissions
Related Questions in VISTADB
- SQL Use Greater/Less Than with like and wildcards
- Given a recursive query that starts with a child, how can I eliminate sibling and parent rows?
- Subsonic with VistaDB?
- Is there any good ORM for VistaDB?
- Vistadb SQL Syntax error
- How can I merge two select queries with counts of mostly identical columns but one set returns multiple rows
- Use of COUNT(DISTINCT myfield)
- Obtain 'Identity' setting for a column in VistaDB
- What is the detailed syntax for the 'CREATE DATABASE' statement for VistaDB?
- create and fill VistaDB database programmatically using c#
Related Questions in DATABASE-CREATE
- How to create mysql database with sequelize (nodejs)
- No such table: table1 error when copying database from assets
- Creating a database in SQL Server 2005
- checking data before SQL update
- "timeout: timed out" when creating database using PyOrient
- Create Database Programmatically
- Memory Allocation while creating database in SQL Server
- How to get table names in capital letters in MySQL 5.6
- multiple database creation script in sql
- create and fill VistaDB database programmatically using c#
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Absolutely! Everything the data migration wizard and DataBuilder do ultimately is expressed as calls to the public API of the VistaDB engine. There are two ways to get things done - SQL Scripts (like you would use with SQL Server) and the DDA API which is proprietary to VistaDB. The current version of VistaDB has a number of differences between SQL Server's syntax and its accepted syntax for schema manipulation (that's a gap we're going to be closing with VistaDB 5) but you can do pretty much anything you want.
You may find it easiest to use the DDA API since it's more API oriented, less script oriented. Here is a good spot to get started in the documentation: VistaDB DDA Assembly Help