[NEW][VStudio] Copy a Record as CSV/SQL text to clipboard

When you are in DataEditor or SQL Editor Result, you can now select a record and open contextual menu for it. Here you will see new commands

  • Copy Record as CSV
  • Copy Record as SQL

vs_records_copy_menu

Result will be as:

CSV:

2, 2, NICK, WAHLBERG, "02/15/2006 04:34:33:000"

SQL:

INSERT INTO "actor"(
"RecID",
"actor_id",
"first_name",
"last_name",
"last_update"
) VALUES (
'2',
2,
'NICK',
'WAHLBERG',
'02/15/2006 04:34:33:000'
);

Published by

Ruslan Zasukhin

VP Engineering and New Technology Paradigma Software, Inc

One thought on “[NEW][VStudio] Copy a Record as CSV/SQL text to clipboard”

Comments are closed.