The data-conversion tag has no wiki summary.
0
votes
3answers
144 views
What is the logic behind this program?
the operator int() function converts the string to an int
class mystring
{
private:
chat str[20];
public:
operator int() // i'm assuming this converts a string to an int
...
0
votes
2answers
390 views
Alter table to change datatype causing very large database file
I am working on a database that is about 6Gb. I need to convert all the non unicode columns to unicode e.g. change all varchar to nvarchar.
I had scripted this using ALTER statements like ALTER ...
3
votes
2answers
348 views
Simple conversion to edgelist with R?
I need to do a simple data conversion in R for usage with igraph. My dataframe is in this format, grouped by GROUP:
A GROUP
1 1 a
2 2 a
3 3 a
4 4 a
5 1 b
...
0
votes
0answers
216 views
Google conversion apis does not convert from text to image png
Hie
I was trying to use google conversion api to convert a html text to the png format using http://code.google.com/appengine/docs/java/conversion/overview.html
I tried to store the conversion ...
0
votes
1answer
348 views
Data conversion over sliding window protocol, C
The problem that I have is somehow very specific.
I have to implement a sliding window protocol in C over a link. My sender.c file recieves as parameters the speed, delay, and percentage of lost or ...
0
votes
1answer
375 views
ognl to javascript data transfer
I am transferring a string containing quotes from ognl to javascript like this:
alert(<s:property value="jsonString"/>);
jsonString has value
{"efwef":"wefwef"}
the quotes get ...
4
votes
1answer
302 views
conversion tool for xml to yaml?
I have an xml file structure and I want to convert it to yaml file structure and probably also for the future use.
Could you please suggest/recommend me a conversion tool to convert xml to yaml?
0
votes
0answers
186 views
What ways to convert between AMR-nb and ILBC by code?
I am writing a program to real time convert between AMR-nb and ILBC. As I would like to convert it in real time, I don't want any files to be generated. calling shell by STDIN/STDOUT/piping or call ...
0
votes
3answers
229 views
Convert rows based entry to column based in shell
I need your help on a multiple row entry into different columns. And do the same with all the entries in file.
File example (showing 2 entries only, there are many like these):
>ABC
*
...
0
votes
1answer
398 views
Pervasive 8.x how to access? Where to find
I am working on some data conversion. I asked for files in csv format but client didn't know how to convert and instead handed me a folder with bunch of *.btr files and FIELD.DDF, FILE.DDF, INDEX.DDF ...
3
votes
2answers
456 views
Correct converting bytes from C++ to delphi AnsiString
I have dll which accepts Pointer to array of bytes from C++ and try to move this data into AnsiString the following way
procedure Convert(const PByteArr: Pointer; ArrSize: Cardinal); export; cdecl;
...
2
votes
2answers
113 views
What's a good way to abstract conditional logic for “weird” hard-coded values?
I'm working on a pretty simple problem, with design ramifications.
Please bear with me, while I describe the situation in vague terms.
I have an entity, call it EntityA:
EntityA{
attr1 : type1;
...
2
votes
2answers
112 views
Are non-latin numerals in Windows SBCS codepages used by any Microsoft libraries to represent numerical data in C strings?
I'm trying to write a parser for "text" files which I know will be encoded in one of the Windows single byte code pages. These files contain text representations of basic data types, and the spec I ...
1
vote
2answers
4k views
SSIS how to convert string (DT_STR) to money (DT_CY) when source has more than 2 decimals
I have a source flat file with values such as 24.209991, but they need to load to SQL Server as type money. In the DTS (which I am converting from), that value comes across as 24.21. How do I ...
1
vote
0answers
122 views
Pro regex converting these impossible-to-regex examples?
Example of input
vulture (wing)
tabulations: one leg; two legs; flying
father; master; patriarch
mat (box)
pedistal; blockade; pilar
animal belly (oval)
old style: naval
jackal's belly; jester ...
0
votes
3answers
479 views
Insert a PHP false into mysql
My MySQL table contains a tinyint(1) value that i use to store a true or false value.
I have the following PHP variables:
$name = '';
$description = '';
$active = true;
Now my SQL query is as ...
0
votes
3answers
1k views
How can I speed up loading data in Oracle tables?
I have some very large tables (to me anyway), as in millions of rows. I am loading them from a legacy system and it is taking forever. Assuming hardware is ok that is fast. How can I speed this up? ...
1
vote
7answers
404 views
use type() information to cast values stored as strings
In my application I have generated a number of values (three columns, of type int, str and datetime, see example below) and these values are stored in a flat file as comma-separated strings. ...
1
vote
0answers
541 views
SSIS Derived Column casting numeric(6,0) to ANSI string drops leading digits
I have a package that's reading a table from an Oracle data source. The surrogate key for the table (an identity column) was assigned a numeric(6,0) data type by SSIS.
When I take that column into a ...
3
votes
2answers
6k views
Converting NSString to NSData and vice versa
I am having an issue while trying to convert NSString to NSData and vice versa.
I am trying to store encrypted string to my database. For that I am using AES algorithm. Now what I am doing is I get ...
1
vote
1answer
318 views
strtoul Equivalent in C#
I'm trying to read-in a bunch of unsigned integers from a configuration file into a class. These numbers may be specified in either base-10 (eg: 1234) or in base-16 (eg: 0xAB31). Therefore looking for ...
2
votes
3answers
1k views
MVVM and Conversion Errors in WPF - Combining ConvertBack Exceptions from View with Validation Errors from Model?
I am developing a WPF application using the MVVM pattern as described by Josh Smith in the article at http://msdn.microsoft.com/en-us/magazine/dd419663.aspx.
I can't figure out a good way of reacting ...
0
votes
4answers
2k views
Javascript Converting IETF Date to ISO8601 Format
I am using this awesome jQuery calendar plugin
http://arshaw.com/fullcalendar/
One of the options for clicking on a date is a callback function to return the date that is clicked on.
...
0
votes
2answers
1k views
Adding ogg vorbis encoding to my project
For my MFC application, I need to convert .wav data in an array into ogg vorbis format.
I compiled both libogg and libvorbis as static libraries. I created "bin" directory in my project folder and ...
0
votes
3answers
680 views
Problem encoding wav into ogg vorbis
I have an MFC application. I have audio data stored in wav format. My question is, how can I encode an array of those bytes into an ogg vorbis format?
I found an example:
...
1
vote
2answers
2k views
Excel to various JSON objects
I have this Excel table:
country year 1 2 3 4
Netherlands 1970 3603 4330 5080 5820
Netherlands 1971 3436 4165 4929 5693
Netherlands 1972 3384 ...
3
votes
1answer
864 views
How to do FLAC or mpeg with python
I'm looking for python code that can convert .wav or other format to FLAC or mpeg. I hope there is one that doesn't depend on other binaries or libraries and just pure python so that it can run ...
0
votes
2answers
502 views
Take a multi-delimited string in MySQL and convert to multiple records
I am converting an old dataset into a newly structured database. Currently they have data in this format:
[quantity int]~[var1 string]|[var2 string optional]|[var3 string optional];(etc);
...
0
votes
3answers
946 views
MATLAB: Conversion from char data type to symbolic data type
Does anyone know how to make a conversion from char data type to symbolic data type?
I put this:
x = 0.49;
n = 22;
roundn(exp(x*49/200),n)
class ans
and the answer is:
ans =
0
ans =
char
...
1
vote
3answers
63 views
php-how to conversion Time
How to conversion time with php?
the original format like 00:02:34 min I need to get a echo like 154
Thanks.
1
vote
1answer
433 views
Need Help With Google AdWords Conversion Tracking
I am running an AdWords campaign and I am having trouble with the conversion tracking code. Basically, I believe I know what the problem is but just do not know how to fix it. When a user signs up for ...
1
vote
1answer
2k views
How to convert Apache Derby database to MySQL
I would like to convert an existing Derby database to MySQL.
0
votes
2answers
1k views
Converting troublesome delimited PDF to Excel
I'm trying to convert this delimited PDF to an excel (or some other delimited format). Using Adobe Acrobat 9, I attempt to save it and copy it) as Excel but it gives the error message "BAD PDF; error ...
2
votes
7answers
1k views
How to convert data into DateTime object
How do I convert a date string, in the general form of "ccyymmdd" in to a DateTime object in C#?
For example, how would I convert "20100715" in to a DateTime object.
Please - No RTFM links to ...
0
votes
1answer
231 views
best place to get db converted? (SQL Anywhere) [closed]
Need to farm out some work on converting a SQL Anywhere database to SQL Server or Access, what is the best site to get this done?
0
votes
2answers
137 views
Switching from Linq-To-SQL to Entity Framework for WCF Data Services Issue with FK “Properties”
So, In my old Linq-To-SQL I would write code like this
var tableItem = new Table
{
Prop1 = var1
Prop2 = var2,
Prop3 = var3,
ParentTableID = parentRecordID
};
...
1
vote
2answers
246 views
Convert strings to Java objects automatically
I want to convert user input that comes as Map<String, String[]> to objects in Java. More specically I want to convert the params of a HttpServletRequest to the fields of an arbitrary domain ...
1
vote
1answer
111 views
PostgreSQL to MySQL Conversion (Ruby on Rails)
Is there any Ruby script for converting a PostgreSQL database to a MySQL database? I have searched many sites to no avail.
3
votes
2answers
7k views
Problem convert column values from VARCHAR(n) to DECIMAL
I have a SQL Server 2000 database with a column of type VARCHAR(255). All the data is either NULL, or numeric data with up to two points of precision (e.g. '11.85'). I tried to run the following T-SQL ...
25
votes
7answers
23k views
Convert 4 bytes to int
I'm reading a binary file like this:
InputStream in = new FileInputStream( file );
byte[] buffer = new byte[1024];
while( ( in.read(buffer ) > -1 ) {
int a = // ???
}
What I want to do it ...
2
votes
1answer
550 views
Using antlr and the DLR together — AST conversion
I have an AST generated via ANTLR, and I need to convert it to a DLR-compatible one (Expression Trees). However, it would seem that i can't use tree pattern matchers for this as expression trees need ...
1
vote
1answer
73 views
Any one aware of what format the OLD IBM PTS (personal typing system) used
I have been trying to write a program to convert my father's old PTS. I assumed it was standard EBCDIC but when I convert to ASCII I get mostly junk. Any one have any knowledge about PTS?
0
votes
3answers
170 views
how to work with strings and integers as bit strings in python?
I'm developing a Genetic Algorithm in python were chromosomes are composed of strings and integers. To apply the genetic operations, I want to convert these groups of integers and strings into bit ...
0
votes
2answers
1k views
Fast conversion from YUY2 to RGB24
I'm writing a program, that will do some transformations with image from a webcam in real-time. As almost all other webcams, my noname gives data in YUY2 format (as written in ...
1
vote
1answer
276 views
Desining a system for mutiple input/multiple output
Background
I'm sketching on an application that needs to perform something like this
database a >--| |--> fileformat 1
database b >--+--> custom application ...
2
votes
5answers
2k views
How to output IEEE-754 format integer as a float
I have a unsigned long integer value which represents a float using IEEE-754 format. What is the quickest way of printing it out as a float in C++?
I know one way, but am wondering if there is a ...
1
vote
3answers
2k views
c++ server htons to java ntohs client conversion
I am creating a small TFTP client
server app where server is developed
using c++ and client using java.
Here i am sending "block count" value
using htons conversion.
But i am not able to convert ...
0
votes
1answer
227 views
SQL server data conversion using Microsoft Sync Framework
We are analyzing Microsoft Sync Framework for syncing the client and server database. The scenario is like this:
Server DB hold master data for all projects but the client DB only contains data to a ...
2
votes
7answers
8k views
Reading Paradox Database files
I'm working with a client who has an existing system, built on what is apparently a Paradox database. I've got the database, in the form of a zip file containing .DB, .MB and .PX files, one for each ...
2
votes
3answers
3k views
SQL Server converting a variable varchar field to money/decimal/something with decimal places
I'm looking for an elegant way to convert a field of type varchar, with variable data in it, to a data type which can be used for mathematical operations sample data from the field
(excluding quotes)
...
