export

Export Console.Beep() Series to File

I'm working on a side project for HAM Radio examination where the user enters text and Morse Code is played back utilizing .NET's Console.Beep(). I'm looking for possible solutions to export this as a recording (audio file) for later playback using standard audio players (Media Player, etc.). Any recommendations on existing code or fre...

building excel file gives memory out of exception

Hi, I need to export huge amount of data from ado.net datatable(which i get by db query) to excel. I tried the following way : 1. Create excel object with workbook/worksheet @ server side...and use memory stream to write whole document to client side. But this gave me "out of Memory exception". bcoz my memory stream was was so huge. ...

How to export Rich Text fields as HTML from Notes with LotusScript?

I'm working on a data migration task, where I have to export a somewhat large Lotus Notes application into a blogging platform. My first task was to export the articles from Lotus Notes into CSV files. I created a Agent in LotusScript to export the data into CSV files. I use a modified version of this IBM DeveloperWorks forum post. And...

Import exported SVN

Hello all, I have a bit specific question. How would I import an exported SVN repo? I have already read few of the import/export questions around here, but my case is more specific. What I got was an exported SVN repo (with my projects' source), now I need to import it again. How would I do it? ...

excel export Memory exception

Hi, I need to export huge amount of data from ado.net datatable(which i get by db query) to excel. I tried the following way : 1. Create excel object with workbook/worksheet @ server side...and use memory stream to write whole document to client side. But this gave me "out of Memory exception". bcoz my memory stream was was so huge. S...

Exporting a function in shell

Please tell me how to export a function in parent shell (bash , sh or ksh) so that the function will be available to all the child process launced from the parent process? ...

Taking dump of tables in oracle 10g using PL/SQL procedure.

Hi Required immediate response, I want to take dump of some selected tables from schema, can any body tell me is it possible? Can anybody provide procedure by executing that we can take dump. e.g. I have schema, testuser, and tables (T1,T2,T3,T5,T9), i want to take dump of T1 & T5 only. Thanks in advance ...

Report loses color when exporting to Excel

Hi, I have a local report in a WinForms application that is giving me some trouble. On this report, I have a table and I am trying to change the BackgroundColor of the Detail row. When I change it to "Red" and view the report, the row is Red as hoped for. When I export the report to Excel and PDF, the row is Red, too. So far, so g...

How can I get rid of these comments in a MySQL dump?

I'm trying to create a simple structure only dump of my database. Using mysqldump gives me a result like: /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!...

How to find out API functions of DLL files?

Is there a way to get all the API (Export) functions from a DLL file? I know that programs such as Depends and PE Explorer can do that but none of them retrieve the argument list. ...

Export Table Into Files Grouping By A Column

Hi! I have a MySQL table that needs to be exported into several separate files. The table should be grouped by a particular column and files should have names of the corresponding values of this column. Format is not relevant I just need a suitable technique, program, whatever. Any help would be much appreciated! ...

Access violation when exporting a C++ class to Lua using LuaBind

I'm trying to export a simple class to Lua using LuaBind. I took the code from two sites which showed roughly the same way to do it, but it's still failing. // Default headers #include <iostream> #include <string> // Lua headers extern "C" { #include "lua.h" #include "lualib.h" #include "lauxlib.h" } #include "luabind/luab...

Java Export - Text Files

I tried to export a Java program from Eclipse to a .jar file, but I came across a problem. It ran fine, but for some reason it didn't find the text files it was supposed to get data from. If anyone could help with this, I would be very grateful. ...

Eclipse RCP Export product wizard fails because of conflicting bundles?!

Hello. I am using Eclipse Galileo. I am learning Eclipse RCP and doing some examples from a book. Recently my Eclipse Galileo updated and some updated bundles arrived. I have the following problem which totally prevents me from exporting an Eclipse RCP product via the wizard. While exporting a product I get the following error: I don...

Ways to export Tables/Views from mySQL Database to printer friendly format (other than phpMyAdmin)

I've created a bunch of views in a database and I'd like to export them to pdf. However phpmyadmin lets me only put a title on each page and it's very limited to how i can layout the output. does anybody have some recommendations of software/scripts they used? ...

How to Export or Import complete database to another database using c#

Please help me to create a Export like Export and Import Opttion in in SQL Server 2005 ...

Getting bcp.exe to escape terminators

I need to export some data using SQL Server 2000's BCP utility. Sometimes my data contains characters, such as \t and \n, that I need to use as column and row terminators. How do I get BCP to escape characters it's using as terminators as it outputs the data, so that I can actually import the data in another program? For example, one ...

"Operation not implemented yet" Error.

I have an asp.net web application. When I try to export a report via crystal report I get following error : Error in File C:\DOCUME~1\User\LOCALS~1\Temp\MainReport {7F8A9E9E-DD47-4D17-A44D-68D9478A792C}.rpt: Operation not yet implemented. I use this code to export report : ReportDocument reportDocument = reportSource.ReportDocumen...

sql statement "into outfile" not working with jdbc

I am attempting to add an "export to CSV" feature to a webapp that displays data from a MySQL database. I have a written a "queryExecuter" class to execute queries from my servlet. I have used this to successfully execute insert queries so I know the connection works etc however queries with the "into outfile" statement are simply not ...

Export a variable from PHP to shell

I'm trying to set a variable that should be accessible from outside PHP. Ideally this should be a local variable, but environment variables are also welcome. First, I've tried putenv(), but this gives no result: $ php -r "putenv('PHP_TEST=string');" ; echo $PHP_TEST $ When i call getenv() from the same script — it results in ...