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 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
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
- 1 parameter, 2 given in ... after migrating from localhost
- How to migrate data to one table to another in MySQL
- Moving Nexus Repository, Backup Only Certain Artifacts?
- Migrating to MongoDb?
- Load balancing strategy for data reading and writing cluster
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
- Django migrations missing way to declare "needed_by"?
- Entity Framework: Automatic migration failed on huge DB
- what is database baseline version in flywaydb. Can I use it for migrating from a specific version and up?
- Sybase to Teradata inquiry LIKE '[0-9]'
- Copying (Cloning) DB to another Vertica Cluster with Different no. of Nodes and Different IP Addresses
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#
- Downgrade SQL CE from 4 to 3.5?
- TSQL - How can I get the total count in a group as part of a subquery
- Is VistaDB compatible with Microsoft Enterprise Library DAAB?
- Is there a way to migrate SQL Server to Vistadb (Umbraco)
- Can Sybase Sql Anywhere be deployed like VistaDB (or MSAccess)?
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#
- Creating a database in SQLite before opening
- CodeIgniter : use Database Forge to test if DB exists
- How to configure audit_trail='db,extended' at the time of oracle database creation?
- Identity Problems During Database Creation
- can't find sqlite file, not sure what c# is doing
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)
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?
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