-5
votes
4answers
97 views
Database design question
I am designing a simple database of online exam system. But i can not figure out how the questions and the answers should be stored. I am thinking question and Answer as different …
0
votes
3answers
31 views
is there any api provided by dot net platform to convert a string or bytres array into user defined object?
Suppose i have input array
byte A[50];
i have put three diffrent data types values in array
as below
string of length 42 bytes(converted into binary)
long with length 4 bytes(co …
1
vote
2answers
27 views
Are data-snapshots of line item prices better than calculations in all cases?
I've often seen line_item tables for orders or invoices that copy one or more fields from other tables in order to take a snap-shot of a customer's product order when it was placed …
0
votes
1answer
25 views
Textmessage containing an appstore link
Hi,
how do I build a link, which opens the appstore and shows an app (something like itms://myapplication?action=show). I want to send that link via a text message (over the web). …
0
votes
1answer
27 views
How does Doctrine handle changes to the database schema?
In brief, what happens when you add a column to a table? What happens when you remove one?
In more details, suppose you have the following:
class User extends Doctrine_Record
{
…
2
votes
1answer
19 views
Reload column names in ActiveRecord model class
I have a script using ActiveRecord that creates column names dynamically based on values read from a CSV file, something like this:
FasterCSV.foreach('votes.csv', :headers => t …
3
votes
1answer
24 views
XML Schema : substitution groups
I'm investigating substitution groups in XML schema and I can't seem to find the official spec. can anyone point me to it ?
I'm wondering if an element with substitution group att …
0
votes
3answers
89 views
Generating C# class file from XML Schema…How to? thanks .
Hello.
Good day.
I want to parse a complex XML schema file and export to a C# file.
Does i need take use System.XML.Schema namespace ?
I don't know how to start my job.
Thanks …
0
votes
3answers
36 views
Tool to Document SQL Server Schema
Can anyone recommend a free (or cheap) program out there which allows me to easily document what certain tables and fields are used for in our applications? Ideally, when we update …
2
votes
1answer
297 views
Database Design for Betting Community
I'm creating a online community for a soccer betting game available in my country. I've a pretty good idea how the whole system should work but I'm having some trouble figuring out …
1
vote
2answers
81 views
Oracle same table name on different schema?
Is it possible to have same table name on different schema with different data on the tables within the one database? I think rather than create multiple database (that hold same t …
0
votes
2answers
41 views
Using a schema other than ‘dbo’ in LinqToSql Designer
Is there a way to specify in a data connection or the LinqToSql Designer a schema?
Whenever I go to setup a data connection for LinqToSql there doesn't seem to be anyway to spec …
0
votes
1answer
36 views
Base64 XML binary content
I have to send binary data in XML and the standard way of doing that is using base64; however I have two options:
store the binary into a xs:base64binary
store the utf-8 encoded …
0
votes
1answer
32 views
*.dmp file import in Oracle
I need to import data from *.dmp file say mydump.dmp.
What I'm doing is:
imp myuser/mypass file=mydump.dmp log=mylog.log
And I'm getting:
only a DBA can import a file exporte …
0
votes
2answers
66 views
Need to provide nhibernate configuration a path to an assembly
I have a solution that uses NHibernate to generate the db schema based on the mapping files. I'm trying to break that functionality out of the solution so it can be used as a stand …
