Showing entries 40521 to 40530 of 44029
« 10 Newer Entries | 10 Older Entries »
First ever Denmark MySQL UG meetup in Copenhagen

With due apologies for the late warning to those not signed up on the Danish User Group mailing list: At the end of the week last week, some of us got together and planned a first, informal meet-up in Copenhagen. The date is tomorrow, Tuesday July 11, the time is 19:00, and the place is Café Castro on Nørrebrogade 209, Copenhagen.

See you there!

… thanks to Bogomil (”Bogo”) Shopov, who was the one to push us into making this happen

MySQL UG Bulgaria

Meetings

Finally, Bulgarian MySQL user group is alive. Thanks to MySQL AB we are in the meetup.com site. Our website will be ready within 2 weeks. Our fist UG meeting will be at Aug 7 in Sofia. Everyone are invited to join the group and meeting.

Just a reminder, the Danish UG will have a meting tomorrow at 19.00 in Copenhagen.


Community

I am starting a white paper on communities and relation between technologies and communities. One of the chapters will be ‘Why the MySQL community is so strong’ and i will be very happy to know your opinion. I know that answer, do you?

European Commission may ask European Court of Justice for opinion on EPLA ratification

As I explained in my previous blog entry, EU internal market commissioner Charlie McCreevy is going to announce pretty soon that he wants to help to get the European Patent Litigation Agreement (EPLA) ratified. The EPLA is a new attempt to make software and business method patents more enforceable in Europe, and beyond that effect, it would generally encourage certain types of patent holders to litigate.

But there’s a technical problem (”technical” in terms of “legally technical”): The European Commission’s legal services say the EPLA is a so-called “mixed agreement” that the member states of the EU cannot conclude on their own: they need the EU involved. To be very precise, it’s not the EU (European Union), but the EC (European Community, formerly called European Economic Community) that has to do this. However, for the …

[Read more]
WAMP and open source on Windows

eWeek Labs ran an extensive "stack" test pitting various Windows and Linux stacks. The results show that the opportunity for open source apps is probably larger then most of have realized. The results also show that there are use cases to support both sides. Let the battle rage on.

eWEEK Labs Bakeoff: Linux Versus .Net Stacks

Based on our forays into user forums for many top open-source enterprise applications, there are many IT managers attempting to run open-source products on Windows servers-attracted, no doubt, to the benefits and efficiencies of using open source without having to become Linux administrators.

The results of our WAMP stack tests indicate that these folks might be on to something. Our WAMP stack setups included …

[Read more]
MySQL Strengthens Management Team with Two New Senior Executives

MySQL AB today announced the appointment of Paul Weinstein as executive vice president of business development, and Clint Smith as vice president and general counsel. Both executives will be based in the companyâ??s newly-relocated Silicon Valley business headquarters in Cupertino, California.

Enforcing Foreign Keys Programmatically in MySQL

In this article we explore how to program foreign keys into a MySQL Server. This is important when your application requires referential integrity and the storage engine you?d like to use, as in the case of MyISAM or NDB (Cluster), does not support this functionality natively. We should note that InnoDB and the upcoming code-named ?Falcon? storage engine, both support foreign keys.

So you think your code is in version control?

"My code is all in version control," Joe said proudly. "Everything is versioned. I'll never lose any work." But then he lost some "other" code he didn't realize was critical. This article is about how to find and safeguard all the hidden code you don't know your business relies on.

No doubt: EU Commissioner McCreevy is determined to back the EPLA (European Patent Litigation Agreement)

Superficially, it appears that the European Commission is going to evaluate the 2,500+ replies it received to its January 2006 questionnaire on patent policy as well as the input it will receive at this coming Wednesday’s (July 12) hearing prior to deciding how to move forward in the area of patent policy.

However, it would be naive to believe there is even the smallest doubt as to what EU internal market commissioner Charlie McCreevy intends to do. He has decided on that a long time ago, at least a number of months, possibly as early as last fall.

McCreevy has a new game plan after his failure to push the software patent directive through last year. That directive was not his baby originally: it was part of his predecessor …

[Read more]
Writing NDBAPI programs - simple primary key operations

Last time we looked at how to connect to MySQL Cluster using the NDBAPI. This time we will look into how to implement simple primary key operations.
First of all we need a table to operate on. Connect a mysql client to the MySQL server:
> mysql -u root
and create the following table in the test database:

create table t1 ( a integer primary key, b integer, c char(20)) engine=ndb;

Insert some data into it:

insert into t1 values(1, 1, 'hello');
insert into t1 values(2, 2, 'hello again');

On this table we then want to issue the query:

SELECT b,c FROM t1 WHERE a=1;

expressed in the NDBAPI.


Before we start...

With Ndb_cluster_connection that we discussed in the last example, we were able to connect to MySQL Cluster.
However, we have not yet connected to a database. This service is provided …

[Read more]
What?s the gist of a hearing?

Yesterday I published the text of the short speech I’m going to give at the European Commission’s patent policy hearing on Wednesday (July 12). I think I should explain to the non-politicos among you what the term “hearing” means in this context.

Governments, quasi-governmental bodies (which is how I’d describe the European Commission, non-judgmentally) and legislators (for the most part, that means parliaments or subsets of a parliament, such as a committee or a party) frequently conduct hearings. At a hearing on a particular topic (in this case, patent policy), politicians and their staffs listen to people who are, personally or professionally, affected by a future decision. Obviously they can’t invite everyone who is or feels …

[Read more]
Showing entries 40521 to 40530 of 44029
« 10 Newer Entries | 10 Older Entries »